-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
executable file
·60 lines (57 loc) · 1.23 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const webpack = require("webpack")
const path = require("path")
empty = "";
module.exports = {
context: __dirname + '/app',
entry: {
'app': ['./js/app'],
'sub': ['./js/sub'],
},
output: {
path: __dirname + '/build/js',
filename: '[name].js',
jsonpFunction: 'sub'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader",
query:{
presets: ['react', 'es2015', "stage-3"]
}
},
{
test: /\.(glsl|frag|vert)$/,
loader: 'shader-loader',
},
{
test: /\.css$/,
use: [ 'to-string-loader', 'css-loader' ]
}
]
},
plugins: [
new webpack.DefinePlugin({
ROOT_DIR: JSON.stringify(empty),
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'sub',
chunks: ['app'],
minChunks: Infinity,
}),
],
watch: true,
//three.jsを使うときにexamples以下をimportできるようにする
resolve: {
modules: [
path.resolve(__dirname, "./app/js"),
"node_modules"
],
alias: {
'three-extras': path.resolve(__dirname, 'node_modules/three/examples/js/')
}
},
devtool: 'inline-source-map'
};