This commit is contained in:
Hadi
2025-09-24 17:20:03 +02:00
commit b9fbed9a54
83 changed files with 6241 additions and 0 deletions

21
front/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"extends": ["./.router/tsconfig.json"],
"compilerOptions": {
"target": "ES2020",
"module": "preserve",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"noEmit": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"$src": ["./src"],
"$src/*": ["./src/*"],
"$lib": ["./src/lib"],
"$lib/*": ["./src/lib/*"],
"sv-router/generated": [".router/router.ts"],
}
}
}