mirror of
https://github.com/felixrieseberg/windows95.git
synced 2026-05-09 00:24:09 +00:00
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.
42 lines
842 B
JSON
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
|
|
}
|
|
}
|