AFFiNE/apps/storybook/tsconfig.json
2023-07-29 00:18:28 -07:00

29 lines
502 B
JSON

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