-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
54 lines (52 loc) · 1.52 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
// ESM bundles can be loaded in browsers: https://caniuse.com/es6-module
module.exports = {
"presets": [
[
"@babel/preset-env",
{
"loose": true, // ES6 to ES5
"bugfixes": true,
//"useBuiltIns": "usage",
"modules": false,
"exclude": ["transform-typeof-symbol"],
"targets": {
"browsers": [
"chrome >= 61", "Firefox >= 60", "edge >= 16", "iOS >= 10.3","Safari >= 10.1","Android >= 93","Opera >= 48"]
},
"debug": true
}
]
]
}
// {
// "plugins": [ "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-object-rest-spread" ],
// "presets": [
// "@babel/preset-typescript", // this or plugin @babel/plugin-transform-typescript
// [
// "@babel/env",
// {
// "useBuiltIns": "usage",
// "modules": false, // required for typescript?
// "targets": {
// "browsers": [
// "last 2 chrome versions",
// "ie 11",
// "safari 11",
// "edge 15",
// "firefox 59"
// // bootsrap set:
// // "chrome >= 45",
// // "Firefox >= 38",
// // "Explorer >= 10",
// // "edge >= 12",
// // "iOS >= 9",
// // "Safari >= 9",
// // "Android >= 4.4",
// // "Opera >= 30"
// ]
// },
// "debug": true
// }
// ]
// ]
// }