-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
40 lines (37 loc) · 1.01 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
const path = require("path");
var SRC_DIR = path.resolve(__dirname, "./src");
var DIST_DIR = path.resolve(__dirname, "./www");
var DEV_DIR = path.resolve(__dirname, "./.temp");
var buildConfig = function(env) {
var isProd = env.prod;
return {
context: __dirname,
entry: {
index: SRC_DIR + "/app.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",
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
}]
},
mode: isProd ? "production" : "development"
};
}
module.exports = buildConfig;