Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LucaColonnello/4c89d23fa0c2e657eb45 to your computer and use it in GitHub Desktop.
Save LucaColonnello/4c89d23fa0c2e657eb45 to your computer and use it in GitHub Desktop.
module.exports = {
entry: './src/main',
module: {
loaders: [
// Transpile any JavaScript file:
{
test: /\.js$/,
loader: 'webpack-traceur?runtime',
exclude: /node_modules/ // <<<<===== prevent traceur to modify all from node_modules
}
]
},
resolve: {
// you can now require('file') instead of require('file.js')
extensions: ['', '.js', '.json']
},
debug: true // shows also which files run through traceur, good to learn and validate the `exclude`
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment