Initial project scaffolding

This commit is contained in:
Axel Meyer
2026-04-07 10:09:51 +00:00
commit 5a19864fb5
9 changed files with 4016 additions and 0 deletions

24
tsconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"isolatedModules": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"outDir": "dist",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@core/*": ["core/*"]
},
"types": ["vitest/globals"]
},
"include": ["src", "core", "tests", "vite-env.d.ts"]
}