19 lines
453 B
JSON
19 lines
453 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": ["ES2020"],
|
|
"outDir": "dist/main",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/main/**/*", "src/shared/**/*", "src/preload/**/*"]
|
|
}
|