AFFiNE/apps/storybook/tsconfig.node.json
2023-08-15 15:34:02 -05:00

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"
}
]
}