forked from BabylonJS/Controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
45 lines (42 loc) · 1.24 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
const path = require("path");
var DIST_DIR = path.resolve(__dirname, "./www");
var DEV_DIR = path.resolve(__dirname, "./.temp");
var buildConfig = function(env) {
const isProd = env.prod === true;
return {
context: __dirname,
entry: {
timeline: DIST_DIR + "/timeline/index.ts",
resizer: DIST_DIR + "/resizer/index.ts",
amp: DIST_DIR + "/resizer/amp.ts",
imageFilter: DIST_DIR + "/imageFilter/index.ts",
},
output: {
path: (isProd ? DIST_DIR : DEV_DIR) + "/scripts/",
filename: "[name].js",
publicPath: '/scripts/',
},
devtool: isProd ? false : 'source-map',
devServer: {
static: ['www'],
},
resolve: {
extensions: [".ts", ".js"]
},
module: {
rules: [{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
configFile: 'dev.tsconfig.json'
}
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
}]
},
mode: isProd ? "production" : "development"
};
}
module.exports = buildConfig;