目前我在VSCode上,利用Angular CLI開發時,希望typescript裡面import path都是絕對路徑,
所以將tsconfig.json裡的baseUrl設定為"src/"時,編譯就會出錯,大家有遇到相關的問題嗎?
設定:
“compilerOptions”: {
“baseUrl”:“src/”
}
錯誤訊息:
Error encountered resolving symbol values statically. Function calls are not supported. Consider replacing the function or lambda with a reference to an exported function (position 194:50 in the original .ts file), resolving symbol NgModule
如果設定絕對路徑,就可以編譯成功,但是團隊每個人的存放專案目錄不一樣,所以無法解決問題。
設定:
“compilerOptions”: {
“baseUrl”:“D:/dev/workspace/AngularDemo/src/”
}