-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
68 lines (68 loc) · 1.5 KB
/
babel.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
module.exports = api => {
const isTest = api.env('test');
const presetEnvConfig = isTest ? {
targets: { node: 'current' }
} : {
// debug: true,
modules: false,
useBuiltIns: 'usage',
corejs: {
'version': '3'
}
};
return {
presets: [
[
'@babel/preset-env',
presetEnvConfig
],
[
'@babel/preset-typescript',
{
// 目前vue-loader解析出来的ts代码传递给babel-loader处理时,没能认出是ts代码
// 所以这里强制所有代码当成ts或者tsx处理
'isTSX': true,
'allExtensions': true
}
]
],
plugins: [
['@babel/plugin-proposal-nullish-coalescing-operator'],
['@babel/plugin-proposal-optional-chaining'],
[
'@babel/plugin-proposal-decorators',
{
// 'decoratorsBeforeExport': true,
'legacy': true
}
],
[
'@babel/proposal-class-properties',
{
'loose': true
}
],
'@babel/proposal-object-rest-spread',
[
'@babel/plugin-syntax-dynamic-import'
],
[
'@babel/plugin-transform-runtime',
{
'corejs': false,
'helpers': true,
'regenerator': true,
'useESModules': true
}
],
[
'import',
{
'libraryName': 'vant',
'libraryDirectory': 'es',
'style': name => `${name}/style/less`
}
]
]
};
};