AFFiNE/apps/core/tsconfig.node.json

24 lines
482 B
JSON
Raw Normal View History

2023-07-18 19:53:10 +03:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
"module": "ESNext",
"verbatimModuleSyntax": false,
"resolveJsonModule": true,
2023-08-25 19:52:33 +03:00
"moduleResolution": "bundler",
2023-07-18 19:53:10 +03:00
"allowSyntheticDefaultImports": true,
"outDir": "./lib/.webpack",
"rootDir": "."
},
"include": [".webpack/*.ts"],
"references": [
{
"path": "../../packages/cli"
2023-08-25 19:52:33 +03:00
},
{
"path": "../../packages/env"
2023-07-18 19:53:10 +03:00
}
]
}