forked from yfsoftcom/weapp-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel.config.js
33 lines (32 loc) · 830 Bytes
/
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
module.exports = function(api) {
api.cache(true)
const presets = [
[
'@babel/preset-env',
// {
// corejs: {
// version: '3',
// proposals: true
// },
// useBuiltIns: 'usage',
// targets: {
// browsers: [
// 'edge >= 16',
// 'safari >= 9',
// 'firefox >= 57',
// 'ie >= 11',
// 'ios >= 9',
// 'chrome >= 49'
// ]
// }
// }
]
]
const plugins = [
['@babel/plugin-proposal-class-properties'],
]
return {
presets,
plugins
}
}