mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
a96a9f38ce
* #108 Add eslint-config-spt * #108 Ignore bundle.js file * #108 Change eslint ignore path to a glob file * Remove jshint and follow more of eslint rules
37 lines
728 B
JavaScript
37 lines
728 B
JavaScript
// docs: http://webpack.github.io/docs/configuration.html
|
|
|
|
var path = require('path');
|
|
var root = path.normalize(path.join(__dirname, '.'));
|
|
var jsroot = path.join(path.join(root, 'public'), 'js');
|
|
|
|
module.exports = {
|
|
|
|
context: jsroot,
|
|
entry: 'app',
|
|
|
|
output: {
|
|
path: jsroot,
|
|
filename: 'bundle.js',
|
|
publicPath: '/js/'
|
|
},
|
|
|
|
resolve: {
|
|
root: [jsroot],
|
|
extensions: ['', '.js', '.jsx'],
|
|
modulesDirectories: ["web_modules", "node_modules"]
|
|
},
|
|
|
|
module: {
|
|
loaders: [
|
|
{ test: /\.jsx$/, loader: 'jsx?harmony' }
|
|
]
|
|
},
|
|
|
|
devtool: "source-map",
|
|
|
|
externals: {
|
|
// stuff not in node_modules can be resolved here.
|
|
}
|
|
|
|
};
|