salix/webpack.config.js

45 lines
1008 B
JavaScript
Raw Normal View History

2016-09-29 05:10:58 +00:00
2016-10-07 08:13:03 +00:00
// var webpack = require('webpack');
var path = require('path');
2016-09-29 05:10:58 +00:00
module.exports =
{
2016-10-07 08:13:03 +00:00
entry: {
'salix.app': ['@salix/app']
},
output: {
2016-10-07 10:08:26 +00:00
path: path.join(__dirname, 'build', 'public'),
2016-10-07 08:13:03 +00:00
filename: '[name].js',
2016-10-07 10:08:26 +00:00
publicPath: 'build/public/',
2016-10-07 08:13:03 +00:00
chunkFilename: "[name].js"
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/,
query: {
presets: ['es2015']
}
}, {
test: /\.html$/,
loader: 'raw'
}, {
test: /\.json$/,
loader: 'json'
}, {
test: /\.css$/,
loader: 'style!css'
}
]
},
resolve: {
modulesDirectories: [
__dirname,
'node_modules'
]
2016-10-07 10:08:26 +00:00
},
devtool: 'cheap-module-eval-source-map' // 'source-map'
2016-09-29 05:10:58 +00:00
};