style(tsconfig): update path mappings to array syntax
Some checks failed
Some checks failed
This commit is contained in:
parent
3a17681ee4
commit
274b4ab687
1 changed files with 4 additions and 4 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue