Refactor App into TS modules; add tsc typecheck

This commit is contained in:
2026-02-07 20:30:56 +01:00
parent 11cfade6dc
commit 684a4dd0b8
22 changed files with 3254 additions and 1664 deletions
+6 -1
View File
@@ -5,7 +5,9 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsc -p tsconfig.json --noEmit",
"build": "tsc -p tsconfig.json --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
@@ -16,6 +18,9 @@
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0"
}
}