mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
19 lines
459 B
JSON
19 lines
459 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "CommonJS",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "../dist-electron",
|
||
|
|
"rootDir": ".",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"declaration": false,
|
||
|
|
"sourceMap": true
|
||
|
|
},
|
||
|
|
"include": ["./**/*.ts"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|