Ionic 3: Build in “prod” mode: Cannot find module “.”

前端 未结 5 1040
南旧
南旧 2021-01-18 04:17

we have a large Ionic app that we’re trying to build in production mode since it’s almost ready. The first issue we found is that we w

5条回答
  •  攒了一身酷
    2021-01-18 04:58

    I had a similar problem, but the wrong typescript package was getting pulled in from a combination of other dependent projects as well as VS Code. I resolved it by pinning the exact version (no ^ or ~) of @ionic/app-scripts and typescript to what I needed.

    "devDependencies": { "@ionic/app-scripts": "3.1.9", "typescript": "2.6.2" }

提交回复
热议问题