Skip to content

Instantly share code, notes, and snippets.

@wolframkriesing
Last active August 29, 2015 14:10
Show Gist options
  • Save wolframkriesing/e1ee1196661659df221f to your computer and use it in GitHub Desktop.
Save wolframkriesing/e1ee1196661659df221f 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&sourceMaps&experimental' }
]
},
resolve: {
// you can now require('file') instead of require('file.js')
extensions: ['', '.js', '.json']
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment