-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
61 lines (58 loc) · 1.21 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
// tslint:disable
const path = require('path');
function resolve(filepath) {
return path.resolve(__dirname, filepath)
}
module.exports = {
resolve: {
extensions: ['.js', '.ts', '.json'],
},
devtool: 'source-map',// 打包出的js文件是否生成map文件(方便浏览器调试)
mode: 'production',
entry: {
"index": './src/index.ts',
},
output: {
filename: 'qweb.js',// 生成的fiename需要与package.json中的main一致
path: path.resolve(__dirname, 'build/umd'),
libraryTarget: 'umd',
umdNamedDefine: true
},
performance: {
hints: false
},
module: {
unknownContextCritical: false,
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
// 指定特定的ts编译配置,为了区分脚本的ts配置
configFile: path.resolve(__dirname, './tsconfig.module.umd.json'),
},
}
],
exclude: /node_modules/,
},
{
test: /[\\\/]tweetnacl[\\\/]/,
use: ['exports-loader', 'imports-loader']
},
{
test: /[\\\/]tweetnacl-auth[\\\/]/,
use: ['exports-loader', 'imports-loader']
}
],
noParse: [
/[\\\/]tweetnacl[\\\/]/,
/[\\\/]tweetnacl-auth[\\\/]/
]
},
plugins: [],
node: {
fs: 'empty'
}
};