TS7 upgrade + write to TS over JS

This commit is contained in:
2026-06-21 15:10:23 +02:00
parent 45b95b5f0c
commit b62fa8a292
16 changed files with 401 additions and 255 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"noEmit": true,
"isolatedModules": true,
"skipLibCheck": true,
"noUncheckedSideEffectImports": false,
"types": ["react", "react-dom"],
"rootDir": "./src"
},
"include": ["src"]
}