style(tsconfig): fix path configuration formatting
This commit is contained in:
parent
35d53bce30
commit
ebf2ee0531
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