mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-14 23:31:44 +03:00
25 lines
522 B
JSON
25 lines
522 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": false,
|
|
"outDir": "./lib/scripts",
|
|
"types": ["node"],
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"./scripts",
|
|
"esbuild.main.config.ts",
|
|
"esbuild.plugin.config.ts"
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|