AFFiNE/tests/storybook/tsconfig.json
EYHN 104c21d84c
refactor(workspace): split workspace interface and implementation (#5463)
@affine/workspace -> (@affine/workspace, @affine/workspace-impl)
2024-01-02 10:58:01 +00:00

32 lines
609 B
JSON

{
"extends": "../../tsconfig.json",
"include": ["./src/**/*", "./.storybook/**/*"],
"compilerOptions": {
// Workaround for storybook build
"baseUrl": "../..",
"composite": true,
"noEmit": false,
"outDir": "lib"
},
"references": [
{
"path": "../../packages/frontend/core"
},
{
"path": "../../packages/frontend/component"
},
{
"path": "../../packages/common/env"
},
{
"path": "../../packages/common/infra"
},
{
"path": "../../packages/common/workspace"
},
{
"path": "./tsconfig.node.json"
}
]
}