18 lines
397 B
JSON
18 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist-electron",
|
|
"rootDir": ".",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"sourceMap": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["*.ts"]
|
|
}
|