AFFiNE/apps/server/tsconfig.node.json
2023-09-16 14:40:33 -07:00

24 lines
476 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"]
}