Converted over to TS

This commit is contained in:
2025-10-22 11:48:36 +02:00
parent 8c7ec8e968
commit 27a4043095
9 changed files with 364 additions and 71 deletions

16
jsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2024",
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strict": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}