Skip to content

How to include jQuery

PatrickJS edited this page Jun 23, 2016 · 9 revisions

npm install jquery --save-dev
typings install dt~jquery --save --global

  plugins: [
    new webpack.ProvidePlugin({
      jQuery: 'jquery',
      $: 'jquery',
      jquery: 'jquery'
    })
  ]

Clone this wiki locally