Fix @shared tsconfig paths so they resolve properly
This commit is contained in:
parent
ba4ddfcc32
commit
f0e9d9ff7f
2 changed files with 3 additions and 5 deletions
|
@ -11,7 +11,7 @@
|
|||
"es2017",
|
||||
"esnext"
|
||||
],
|
||||
"baseUrl": "src",
|
||||
"baseUrl": ".",
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"outDir": "./dist",
|
||||
|
|
|
@ -13,14 +13,12 @@
|
|||
"esnext",
|
||||
"dom"
|
||||
],
|
||||
"baseUrl": "src",
|
||||
"baseUrl": ".",
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"allowJs": true,
|
||||
"paths": {
|
||||
"@shared/*": [
|
||||
"../shared/src/*"
|
||||
]
|
||||
"@shared/*": ["../shared/src/*"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue