mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
27 lines
577 B
JSON
27 lines
577 B
JSON
{
|
|
"extends": "../../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": false,
|
|
"outDir": "./lib/scripts",
|
|
"types": ["node", "affine__env"],
|
|
"allowJs": true
|
|
},
|
|
"include": ["./scripts"],
|
|
"exclude": ["./renderer"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../../../tools/utils"
|
|
}
|
|
]
|
|
}
|