Skip to content

How to include jQuery

vouill edited this page May 25, 2016 · 9 revisions

npm install jquery --save-dev
typings install jquery --save --ambient

if 2nd line of command didn't work try: typings install dt~jquery --global --save

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

Clone this wiki locally