Files
AFFiNE-Mirror/apps/storybook/tsconfig.json
T
Alex Yang 3ec108b60c feat(storybook): preview app (#3765)
(cherry picked from commit 67b33d9b8f)
2023-08-16 17:40:25 -05:00

32 lines
547 B
JSON

{
"extends": "../../tsconfig.json",
"include": ["./src"],
"compilerOptions": {
// Workaround for storybook build
"baseUrl": "../..",
"composite": true,
"noEmit": false,
"outDir": "lib"
},
"references": [
{
"path": "../../apps/core"
},
{
"path": "../../packages/component"
},
{
"path": "../../packages/env"
},
{
"path": "../../packages/workspace"
},
{
"path": "../../plugins/image-preview"
},
{
"path": "./tsconfig.node.json"
}
]
}