-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
46 lines (43 loc) · 1.09 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* eslint strict: 0 */
'use strict';
const path = require('path');
module.exports = {
output: {
path: path.join(__dirname, './public'),
filename: 'compiled/js/[name].js',
sourceMapFilename: '/' + '[file].map'
},
resolve: {
unsafeCache: true,
root: path.resolve(__dirname, './src/js'),
alias: {
'@templates': path.resolve(__dirname, './public/templates'),
'@scss': path.resolve(__dirname, './src/scss')
},
extensions: ['', '.js', '.jsx', '.json', '.html'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main']
},
resolveLoader: { root: path.join(__dirname, "node_modules") },
module: {
loaders: [
{
test: /\.jsx?$/,
loaders: ['babel-loader'],
exclude: /node_modules/
},
{
test: /\.json$/,
loader: 'json-loader'
},
{
test : /\.js$/,
loader: 'jstransform-loader'
}
]
},
plugins: [
],
externals: [
// put your node 3rd party libraries which can't be built with webpack here (mysql, mongodb, and so on..)
]
};