-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.babelrc
28 lines (28 loc) · 784 Bytes
/
.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
{
"presets": [
[
"env",
{
"targets": { "node": "6.10.0" }
}
]
],
"plugins": [
[
"add-header-comment",
{
"header": [
"NOTE: This code is transpiled from ES2017 using Babel.",
"Instead of modifying this file directly, work with the source code instead and upload the transpiled output here."
],
"commentLineStart": " * ",
"commentEnd": "\n "
}
],
"transform-es2015-modules-commonjs",
"transform-es2017-object-entries",
"transform-object-rest-spread",
"transform-es2015-destructuring",
"array-includes"
]
}