-
Notifications
You must be signed in to change notification settings - Fork 24
/
webpack.config.demos.js
50 lines (48 loc) · 1.51 KB
/
webpack.config.demos.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
module.exports = {
context: __dirname + '/demos',
cache: false,
entry: {
'cornell-box': ['cornell-box/cornellbox.ts'],
'cubescape': ['cubescape/cubescape.ts'],
'gltf-renderer': ['gltf-renderer/gltfrenderer.ts'],
'progressive-lighting': ['progressive-lighting/progressive-lighting.ts'],
'eye-tracking': ['eye-tracking/eyetracking.ts'],
'point-cloud': ['point-cloud/point-cloud.ts']
},
devtool: 'source-map',
output: {
path: __dirname + '/build/demos',
filename: '[name].js',
library: undefined,
libraryTarget: 'umd'
},
externals: {
'webgl-operate': 'gloperate'
},
resolve: {
modules: [__dirname + '/node_modules', __dirname + '/demos', __dirname + '/source'],
extensions: ['.ts', '.tsx', '.js']
},
module: {
rules: [
{
test: /\.tsx?$/,
include: /(demos|dist)/,
exclude: /(source|test|examples|website|node_modules)/,
use: {
loader: 'ts-loader',
options: {
compilerOptions: {
declaration: false,
noUnusedLocals: true,
removeComments: true
}
}
}
},
{
test: /\.(glsl|vert|frag)$/,
use: { loader: 'webpack-glsl-loader' },
}]
},
};