Files
windows95/tsconfig.json
Felix Rieseberg 00943ae4da Update all dependencies
React 19, Electron 41, TypeScript 6, electron-forge 7.8, plus everything
else to latest. Migrated to React 19 createRoot API, updated for Electron 41
session/window type changes, and adjusted tsconfig for TS 6 deprecations.
Regenerated @electron/packager patch for 18.4.4.
2026-04-10 20:34:28 -07:00

42 lines
842 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"lib": [
"es2023",
"dom"
],
"noImplicitAny": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noEmitHelpers": false,
"module": "commonjs",
"moduleResolution": "node",
"ignoreDeprecations": "6.0",
"pretty": true,
"target": "es2023",
"jsx": "react",
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
}
}