mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +00:00
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",
|
"es2017",
|
||||||
"esnext"
|
"esnext"
|
||||||
],
|
],
|
||||||
"baseUrl": "src",
|
"baseUrl": ".",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
|
|
|
@ -13,14 +13,12 @@
|
||||||
"esnext",
|
"esnext",
|
||||||
"dom"
|
"dom"
|
||||||
],
|
],
|
||||||
"baseUrl": "src",
|
"baseUrl": ".",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"paths": {
|
"paths": {
|
||||||
"@shared/*": [
|
"@shared/*": ["../shared/src/*"]
|
||||||
"../shared/src/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue