-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
50 lines (47 loc) · 1.19 KB
/
webpack.common.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
const webpack = require("webpack");
const TerserPlugin = require("terser-webpack-plugin");
const ssConfig = {
entry: {
"dist/sigmascript": "./src/sigmascript/index.ts",
"dist/sigmascriptx": "./src/sigmascriptx/index.ts",
"dist/runtime/node": "./src/runtime/node.ts",
"dist/runtime/browser": "./src/runtime/browser.ts",
"dist/runtime/ssx": "./src/runtime/ssx.ts",
"demo/index": "./src/demo.ts"
},
resolve: {
extensions: [".tsx", ".ts", ".js"]
},
output: {
filename: "[name].js",
path: __dirname
}
};
const cliConfig = {
target: "node",
entry: "./src/bin.ts",
resolve: {
extensions: [".tsx", ".ts", ".js"]
},
output: {
filename: "bin/sigmascript.js",
path: __dirname
},
optimization: {
minimizer: [
new TerserPlugin({
extractComments: false
})
]
},
plugins: [
new webpack.BannerPlugin({
banner: "#!/usr/bin/env node",
raw: true
}),
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1
})
]
}
module.exports = { ssConfig, cliConfig };