AFFiNE/tsconfig.node.json

25 lines
455 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"outDir": "lib"
},
2023-07-18 19:53:10 +03:00
"include": [
2023-07-20 13:52:29 +03:00
"vite.config.ts",
2023-07-18 19:53:10 +03:00
"vitest.config.ts",
"scripts",
"packages/frontend/core/.webpack/runtime-config.ts"
2023-07-18 19:53:10 +03:00
],
"references": [
{
"path": "./packages/common/env"
2023-07-18 19:53:10 +03:00
},
{
"path": "./tools/cli"
}
]
}