17 lines
393 B
JSON
17 lines
393 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"lib": ["ESNext"],
|
|
"outDir": "../dist-electron",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["main.ts", "preload.ts", "services/**/*", "types/**/*"]
|
|
}
|