AFFiNE/apps/server/tsconfig.node.json

20 lines
406 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,
"outDir": "dist/scripts",
"rootDir": "."
2023-04-19 02:14:25 +03:00
},
"references": [
{
"path": "../../tests/fixtures"
}
],
"include": ["scripts", "package.json"]
2023-04-19 02:14:25 +03:00
}