electron-vite/tsconfig.json

21 lines
491 B
JSON
Raw Normal View History

2022-03-17 09:21:02 +01:00
{
"compilerOptions": {
2023-12-08 14:35:06 +01:00
"target": "ES2022",
"module": "ESNext",
"lib": ["ESNext"],
2022-03-17 09:21:02 +01:00
"sourceMap": false,
"strict": true,
"allowJs": true,
"esModuleInterop": true,
2023-12-08 14:35:06 +01:00
"moduleResolution": "Node",
2022-03-17 09:21:02 +01:00
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
2023-12-07 15:32:59 +01:00
"noImplicitReturns": true
2022-03-17 09:21:02 +01:00
},
2023-12-07 15:32:59 +01:00
"include": ["src", "rollup.config.ts"]
2022-03-17 09:21:02 +01:00
}