g6/.babelrc

17 lines
209 B
Plaintext
Raw Normal View History

2018-06-05 23:58:10 +08:00
{
"plugins": [
2018-08-08 17:15:32 +08:00
"transform-remove-strict-mode"
2018-08-07 15:04:58 +08:00
],
"presets": [
2018-06-05 23:58:10 +08:00
[
2018-09-11 17:32:02 +08:00
"@babel/preset-env",
2018-06-05 23:58:10 +08:00
{
2018-08-07 15:04:58 +08:00
"loose": true,
"modules": false
2018-06-05 23:58:10 +08:00
}
2019-11-04 19:36:02 +08:00
],
"babel-preset-gatsby"
2018-08-07 15:04:58 +08:00
]
2018-09-11 17:32:02 +08:00
}