AFFiNE/packages/backend/server/tsconfig.node.json
2023-10-18 15:30:08 +00:00

24 lines
485 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
"module": "ESNext",
"resolveJsonModule": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"outDir": "./lib/scripts",
"rootDir": "."
},
"references": [
{
"path": "../../../tests/fixtures"
},
{
"path": "../../../tests/kit"
}
],
"include": ["scripts", "package.json"],
"exclude": ["tests"]
}