mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 16:22:42 +03:00
26 lines
560 B
JSON
26 lines
560 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": false,
|
|
"outDir": "lib/.storybook"
|
|
},
|
|
"include": [".storybook/**/*"],
|
|
"exclude": ["lib"],
|
|
"references": [
|
|
{ "path": "../../apps/core" },
|
|
{ "path": "../../packages/i18n" },
|
|
{
|
|
"path": "../../packages/env"
|
|
},
|
|
{
|
|
"path": "../../apps/core/tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|