refactor(storybook): move to apps folder (#2901)

This commit is contained in:
Alex Yang
2023-06-28 20:29:52 +08:00
parent 81bac496b4
commit 1bff46d5f0
34 changed files with 29 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"module": "ESNext",
"jsx": "react-jsx",
"moduleResolution": "Node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noEmit": false,
"outDir": "lib/.storybook"
},
"include": [".storybook/**/*"],
"exclude": ["lib"],
"references": [
{ "path": "../../packages/i18n" },
{
"path": "../../packages/env"
}
]
}