-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
46 lines (44 loc) · 1.1 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
import path from 'path';
import url from 'url';
import TerserPlugin from "terser-webpack-plugin";
const cwd = url.fileURLToPath (import.meta.url);
const outputDirectory = path.normalize (path.join (path.dirname (cwd), 'dist'))
export default {
entry : './ts/ccxt.ts',
output: {
path: outputDirectory,
filename: 'ccxt.browser.js',
library: {
type: 'self', // we are targeting the browser (including webworkers)
name: 'ccxt',
},
chunkFormat: 'array-push',
chunkLoading: 'jsonp',
},
cache: {
type: 'filesystem',
},
module: {
rules: [{
test: /\.ts$/,
use: 'ts-loader',
exclude: [ /node_modules/ ],
sideEffects: false,
}],
},
resolve: {
extensions: [ '.ts' ],
// this line is needed because we use import xxx.js in ccxt
extensionAlias: {
'.js': [ '.js', '.ts' ],
},
},
mode: 'production',
target: 'web',
optimization: {
minimize: false,
minimizer: [new TerserPlugin ({ extractComments: false })],
usedExports: true, // these two lines line turns on tree shaking
concatenateModules: false,
},
}