AFFiNE/apps/electron/tsconfig.node.json

15 lines
376 B
JSON
Raw Normal View History

2023-04-25 02:53:36 +03:00
{
2023-06-09 11:43:46 +03:00
"extends": "../../tsconfig.json",
2023-04-25 02:53:36 +03:00
"compilerOptions": {
"composite": true,
"target": "ESNext",
"module": "ESNext",
"resolveJsonModule": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"noEmit": false,
"outDir": "./lib/scripts"
2023-04-25 02:53:36 +03:00
},
2023-06-30 11:10:35 +03:00
"include": ["./scripts", "esbuild.main.config.ts", "esbuild.plugin.config.ts"]
2023-04-25 02:53:36 +03:00
}