3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Fix @shared tsconfig paths so they resolve properly

This commit is contained in:
Dragory 2019-11-07 22:53:11 +02:00
parent ba4ddfcc32
commit f0e9d9ff7f
2 changed files with 3 additions and 5 deletions

View file

@ -11,7 +11,7 @@
"es2017",
"esnext"
],
"baseUrl": "src",
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"outDir": "./dist",

View file

@ -13,14 +13,12 @@
"esnext",
"dom"
],
"baseUrl": "src",
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true,
"paths": {
"@shared/*": [
"../shared/src/*"
]
"@shared/*": ["../shared/src/*"]
}
}
}