mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
34 lines
622 B
Plaintext
34 lines
622 B
Plaintext
{
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
"@babel/preset-react",
|
|
"@babel/preset-flow"
|
|
],
|
|
"plugins": [
|
|
"babel-plugin-emotion",
|
|
"babel-plugin-macros",
|
|
"@babel/plugin-proposal-class-properties",
|
|
"@babel/plugin-proposal-export-default-from",
|
|
[
|
|
"@babel/plugin-transform-runtime",
|
|
{
|
|
"regenerator": true
|
|
}
|
|
]
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"plugins": ["babel-plugin-require-context-hook"]
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"test": "./examples/vue-kitchen-sink",
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
"babel-preset-vue"
|
|
]
|
|
}
|
|
]
|
|
}
|