initial commit

This commit is contained in:
Urban Modig
2026-03-22 16:36:05 +01:00
parent 67a2cd4290
commit 2c93f6777b
54 changed files with 9822 additions and 0 deletions

28
frontend/tsconfig.json Normal file
View File

@ -0,0 +1,28 @@
{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./*"
]
},
"allowImportingTsExtensions": true,
"types": ["vite/client"],
"noEmit": true
}
}