updated react example with todo example

This commit is contained in:
dswbx
2025-03-15 16:37:03 +01:00
parent 0e81e14421
commit 2531c2d8d4
15 changed files with 261 additions and 37 deletions

View File

@@ -7,16 +7,17 @@
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noUncheckedSideEffectImports": true,
"paths": {
"~/*": ["./src/*"]
}
},
"include": ["src"]
}