Forked from wolframkriesing/webpack config excluding external libs.js
Last active
August 29, 2015 14:20
-
-
Save LucaColonnello/4c89d23fa0c2e657eb45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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