-
-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy path.babelrc.module.js
36 lines (35 loc) · 947 Bytes
/
.babelrc.module.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
/* Built for whs v2.2.0-beta.0 */
module.exports = {
presets: [['@babel/preset-env', {
'targets': {
browsers: ['last 2 versions', 'safari >= 7']
},
modules: false
}]],
plugins: ['@babel/plugin-external-helpers', // ['@babel/plugin-transform-runtime', {
// polyfill: false,
// regenerator: true
// }],
'@babel/plugin-proposal-class-properties', ['@babel/plugin-proposal-decorators', {
legacy: true
}], '@babel/plugin-transform-async-to-generator'] // env: {
// test: {
// presets: [
// ['@babel/preset-env', {
// targets: {
// node: 'current'
// },
// modules: 'commonjs',
// useBuiltIns: false,
// debug: false
// }]
// ],
// plugins: [
// ['@babel/plugin-transform-runtime', {
// polyfill: false
// }]
// ]
// },
// }
};
//# sourceMappingURL=.babelrc.module.js.map