AFFiNE/apps/storybook/tsconfig.node.json

25 lines
522 B
JSON
Raw Normal View History

{
"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"
2023-07-18 19:53:10 +03:00
},
{
"path": "../../apps/core/tsconfig.node.json"
}
]
}