How to import jquery using ES6 syntax?

index.js First, as @nem suggested in comment, the import should be done from node_modules/: Well, importing from dist/ doesn’t make sense since that is your distribution folder with production ready app. Building your app should take what’s inside node_modules/ and add it to the dist/ folder, jQuery included. Next, the glob –* as– is wrong as I know what object I’m importing (e.g. jQuery and $), so … Read more