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