style(tsconfig): fix path configuration formatting

This commit is contained in:
Jan K9f 2025-04-02 09:05:33 +02:00 committed by Jan-Marlon Leibl
parent 2a11675fb6
commit db3d2e7b82
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5

View file

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