1.Typescript 踩雷
問題
visual studio 預設會安裝 typescript 2.6
專案使用 typescript 2.3 , 因為暫時無法升級到 2.6 以上的版本
會導致專案無法編譯成功
解決步驟
- 在專案目錄執行
npm i
重新安裝相關 module - compile 後發現
node_modules/@types
中有檔案無法成功編譯 - 移除
node_modules/@types
整個資料夾 - 重新 compile 後仍會無法成功
- 移除
C:\Program Files (x86)\Microsoft SDKs\TypeScript\2.6
(非必要,好像要看 vs 預設載入的版本為何?)
2.多語系 dll 衝突
- 清空
bin
資料夾 - 清空
c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\
資料夾 - 重建前台專案
3.Chocolatey
1 | choco install googlechrome -y |
(fin)