You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 06:56:19 +00:00
c7a5aea98a
- typescript: ~5.8.2 → ^6.0.3 (matches Nitro-V3 client) - adds @typescript/native-preview (tsgo) as TypeScript 7 preview - new `compile:fast` script using tsgo (~7× faster: 2.5s vs 17.6s) - tsconfig cleanup ahead of TypeScript 7 deprecations: - removed `baseUrl` (unused: no `paths` mappings on this project) - removed `downlevelIteration` (target ES2022 makes it a no-op) - `moduleResolution`: "Node" → "bundler" (vite consumes the renderer) Compile errors: 28 → 29. Net +1 because TS 6's tightened lib types flag two pre-existing crypto calls (WsSessionCrypto.ts:43,48) and resolves one prior false positive. All errors are in pre-existing code, unrelated to the new event/snapshot APIs from 791b8ad.
28 lines
595 B
JSON
28 lines
595 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"strict": false,
|
|
"strictNullChecks": false,
|
|
"target": "ES2022",
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext"
|
|
],
|
|
"module": "ES2022"
|
|
}
|
|
}
|