AFFiNE/apps/server/tsconfig.node.json

24 lines
476 B
JSON
Raw Normal View History

2023-04-19 02:14:25 +03:00
{
"extends": "../../tsconfig.json",
2023-04-19 02:14:25 +03:00
"compilerOptions": {
"composite": true,
"target": "ESNext",
"module": "ESNext",
"resolveJsonModule": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
2023-09-17 00:40:33 +03:00
"outDir": "./lib/scripts",
"rootDir": "."
2023-04-19 02:14:25 +03:00
},
"references": [
{
"path": "../../tests/fixtures"
2023-09-13 08:11:19 +03:00
},
{
"path": "../../tests/kit"
}
],
"include": ["scripts", "package.json"],
"exclude": ["tests"]
2023-04-19 02:14:25 +03:00
}