Mit Alias @ arbeiten für die Pfade

This commit is contained in:
ISA
2025-06-18 10:02:11 +02:00
parent 138001e7c1
commit d7d6a2db30
13 changed files with 1320 additions and 1450 deletions

View File

@@ -14,8 +14,15 @@
"types": ["cypress", "node"],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"incremental": true
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["*"],
"@/redux/*": ["redux/*"],
"@/utils/*": ["utils/*"],
"@/components/*": ["components/*"]
}
},
"include": ["src", "**/*.test.ts", "**/*.test.tsx", "types/global.d.ts"],
"include": [".", "**/*.test.ts", "**/*.test.tsx", "types/global.d.ts"],
"exclude": ["node_modules"]
}