forked from department-of-veterans-affairs/vets-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
98 lines (98 loc) · 2.99 KB
/
.babelrc
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
// Javascript settings.
"presets": [
[
"@babel/env",
{
"forceAllTransforms": true,
"targets": {
/* This is the full list of browsers we support, but we are not using it because we want babel-polyfill
* to include only polyfills for more modern browsers.
* Older browser polyfills are in preESModulesPolyfills.js
*/
/* "browsers": ["Chrome 60", "Firefox 57", "iOS 9", "Edge 14", "ChromeAndroid 64", "Safari 10", "ie 11"] */
/*
* This is the list of browers we support that all also have support for the nomodule script
* attribute, meaning we can make them ignore a file that includes polyfills for older browsers
*/
"browsers": [
"Chrome 61",
"Firefox 60",
"iOS 11",
"Edge 16",
"ChromeAndroid 67",
"Safari 11"
]
},
"useBuiltIns": "entry",
"corejs": "3.8.1",
"modules": false,
"debug": false
}
],
"@babel/react"
],
"ignore": [
/* Ignore the file containing core-js polyfill imports for older browsers. If Babel processes the file,
* it will remove all the imports because they are not needed for the newer browsers in the list above.
*/
"./src/platform/polyfills/preESModulesPolyfills.js"
],
"plugins": [
"lodash",
// Stage 2
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
// Stage 3
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-class-properties", { "loose": false }],
"@babel/plugin-proposal-json-strings",
[
"module-resolver",
{
"root": "./src",
"alias": {
"~": "./src",
"@@vap-svc": "./src/platform/user/profile/vap-svc",
"@@profile": "./src/applications/personalization/profile"
}
}
]
],
// Share polyfills between files.
"env": {
"test": {
"presets": ["@babel/env"],
"plugins": [
"istanbul",
"dynamic-import-node",
"transform-react-remove-prop-types",
// Stage 2
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
// Stage 3
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-class-properties", { "loose": false }],
"@babel/plugin-proposal-json-strings"
]
},
"production": {
"plugins": [
[
"transform-react-remove-prop-types",
{
"removeImport": true
}
]
]
}
}
}