style(tsconfig): update path mappings to array syntax
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 19s
CI / test-build (pull_request) Failing after 25s
CI / prettier (pull_request) Failing after 37s

This commit is contained in:
Jan K9f 2025-04-02 09:07:27 +02:00
parent 3a17681ee4
commit 274b4ab687
Signed by: jank
GPG key ID: 22BEAC760B3333D6

View file

@ -5,10 +5,10 @@
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@service/*": "app/service/*",
"@environments/*": "environments/*",
"@shared/*": "app/shared/*",
"@blackjack/*": "app/feature/game/blackjack/*"
"@service/*": ["app/service/*"],
"@environments/*": ["environments/*"],
"@shared/*": ["app/shared/*"],
"@blackjack/*": ["app/feature/game/blackjack/*"]
},
"outDir": "./dist/out-tsc",
"strict": true,