-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathwebpack.config.js
85 lines (75 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var path = require("path");
var MAIN_DIR = path.resolve(__dirname, "../");
var BUILD_DIR = path.resolve(MAIN_DIR, "./dist");
var DEV_DIR = path.resolve(MAIN_DIR, "./.temp");
var buildConfig = function(env) {
var isProd = env.prod;
var config = {
watch: !isProd,
context: MAIN_DIR,
entry: [
"./vendors/ace.js",
"./vendors/ace-mode-glsl.js",
"./vendors/ace-theme-monokai.js",
"./vendors/ace-theme-override.css",
"./vendors/ace-ext-searchbox.js",
"./src/spector.ts"
],
output: {
path: isProd ? BUILD_DIR : DEV_DIR,
publicPath: "/",
filename: "spector.bundle.js",
libraryTarget: "umd",
library: "SPECTOR",
umdNamedDefine: true
},
performance: {
hints: false
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".css", ".sass"]
},
devtool: false,
mode: isProd ? "production" : "development",
module: {
rules: [{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
configFile: "src/tsconfig.json"
}
}, {
test: /\.scss$/,
use: [ "style-loader?insert=html", "css-loader", "sass-loader" ]
}, {
test: /\.css$/,
use: [ "style-loader?insert=html", "css-loader" ]
}, {
test: /ace.js$/,
// use: [ "exports-loader?ace" ]
loader: "exports-loader",
options: {
type: "commonjs",
exports: "ace",
},
}, {
test: /spector.js$/,
use: [ "exports-loader?SPECTOR" ]
}]
}
};
if (!isProd) {
config.devtool = "nosources-source-map";
// Source Map Remapping for dev tools.
config.output.devtoolModuleFilenameTemplate = (info) => {
info.resourcePath = path.normalize(info.resourcePath);
console.error(info.resourcePath);
// if (!path.isAbsolute(info.resourcePath)) {
// info.resourcePath = path.join(DEV_DIR, info.resourcePath);
// }
return `../${info.resourcePath.replace(/\\/g, "/")}`;
};
}
return config;
}
module.exports = buildConfig;