-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbabel.config.js
39 lines (37 loc) · 1.09 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
module.exports = {
presets: [
[
'@vue/cli-plugin-babel/preset', {
"targets": {
"esmodules": true,
"node": "current"
}
},
],
[
"@babel/preset-env", {
// "targets": {
// // When specifying this option, the browsers field will be ignored.
// "esmodules": true
// node: 'current'
// },
// Enable transformation of ES6 module syntax to another module type.
// Setting this to false will not transform modules.
"modules": "auto"
}],
"@babel/typescript"
],
"plugins": [
["@babel/plugin-proposal-class-properties", {
// "loose": true
}],
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator"
],
// "env": {
// "test": {
// "plugins": ["@babel/plugin-transform-modules-commonjs"]
// }
// }
};