2023-09-30 12:13:40 -07:00
|
|
|
{
|
|
|
|
|
"include": ["src/**/*", "types/**/*"],
|
2023-11-29 18:23:47 -08:00
|
|
|
"exclude": ["src/electron/emain.ts"],
|
2023-09-30 12:13:40 -07:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"module": "commonjs",
|
2023-11-29 18:23:47 -08:00
|
|
|
"jsx": "preserve",
|
2023-09-30 12:13:40 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2023-11-07 16:04:25 +08:00
|
|
|
"isolatedModules": true,
|
2023-11-29 18:23:47 -08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"downlevelIteration": true
|
2023-09-30 12:13:40 -07:00
|
|
|
}
|
|
|
|
|
}
|