mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
34 lines
687 B
Plaintext
34 lines
687 B
Plaintext
{
|
|
"extends": "../../../.babelrc",
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"targets": ["last 5 versions"],
|
|
"bugfixes": true,
|
|
"modules": "auto",
|
|
"debug": false
|
|
}
|
|
],
|
|
"@babel/preset-react"
|
|
],
|
|
"plugins": ["react-hot-loader/babel", "@babel/transform-runtime", "emotion"],
|
|
"env": {
|
|
"test": {
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"bugfixes": true,
|
|
"debug": false
|
|
}
|
|
],
|
|
"@babel/preset-react",
|
|
"@babel/typescript"
|
|
],
|
|
"plugins": ["@babel/transform-runtime", "dynamic-import-node"]
|
|
}
|
|
},
|
|
"ignore": ["**/*.d.ts"]
|
|
}
|