cygnal/.babelrc

32 lines
689 B
Plaintext
Raw Normal View History

2018-06-25 18:29:57 +02:00
{
2018-11-29 14:13:58 +01:00
"env": {
"test": {
"presets": [
"@babel/preset-env"
],
2018-11-29 14:48:20 +01:00
"plugins": [
"@babel/plugin-transform-modules-commonjs",
["module-resolver", {
"root": ["./src"],
"alias": {
"@": "./src"
}
}]
]
2018-11-29 14:13:58 +01:00
}
},
"presets": [
[
"@babel/preset-env",
{
"modules": false,
2020-01-02 12:06:29 +01:00
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"plugins": [
2018-09-04 12:05:51 +02:00
"@babel/plugin-syntax-dynamic-import"
]
2018-06-25 18:29:57 +02:00
}