16 lines
322 B
JSON
16 lines
322 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "dist-electron",
|
|
"rootDir": "electron",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"],
|
|
"noEmit": false
|
|
},
|
|
"include": ["electron/**/*.ts"]
|
|
}
|