[fix] aliases

This commit is contained in:
Janis Meister
2023-06-29 12:51:58 +02:00
parent 98deb4db19
commit e5f4e7b4fa
5 changed files with 21 additions and 19 deletions

View File

@@ -6,16 +6,15 @@
"module": "ESNext",
"skipLibCheck": true,
"baseUrl": "./src",
"baseUrl": ".",
"paths": {
"@/*": ["/src/*"],
"@components/*": ["/src/components/*"],
"@assets/*": ["/src/assets/*"],
"@styles/*": ["/src/styles/*"],
"@utils/*": ["/src/utils/*"],
"@interfaces/*": ["/src/interfaces/*"],
"@handlers/*": ["/src/handlers/*"]
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@assets/*": ["src/assets/*"],
"@styles/*": ["src/styles/*"],
"@utils/*": ["src/utils/*"],
"@interfaces/*": ["src/interfaces/*"],
"@handlers/*": ["src/handlers/*"]
},
/* Bundler mode */
@@ -32,6 +31,6 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src", "tests/teamspeakHandler.test.ts"],
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}