Can't resolve Typescript files during compile after package update
-
I did an update on my Node packages, and now my project is breaking during compile. I get messages that specific modules or dependencies can’t be found. My project has a mix of javascript and Typescript files, and all of the files that can’t be found are Typescript files. I have deleted node_modules, package-lock.json and the .quasar folder and re-run npm install many times. I’ve encountered the same issues when updating other projects and was able to get past the blockages eventually, but I can’t remember which particular change might have fixed the problem on the other projects. Another project has the exact same dependencies in the package-json and runs fine.
The packages I’m using are below:
“dependencies”: {
“@bugsnag/js”: “^6.5.2”,
“@quasar/extras”: “^1.7.0”,
“@types/jquery”: “^3.3.32”,
“axios”: “^0.19.2”,
“core-js”: “^2.6.9”,
“jquery”: “^3.4.1”,
“quasar”: “1.5.8”,
“socket.io-client”: “^2.3.0”,
“vue-slick-carousel”: “^1.0.2”,
“vue-touch-keyboard”: “^0.3.2”
},
“devDependencies”: {
“@quasar/app”: “1.8.5”,
“@quasar/quasar-app-extension-testing”: “^1.0.0”,
“@quasar/quasar-app-extension-testing-unit-jest”: “^1.0.0”,
“@quasar/quasar-app-extension-typescript”: “^1.0.0-beta.2”,
“@types/node”: “11.9.5”,
“@typescript-eslint/eslint-plugin”: “^1.12.0”,
“@typescript-eslint/parser”: “^1.12.0”,
“devtron”: “^1.4.0”,
“electron”: “^7.1.12”,
“electron-debug”: “^3.0.1”,
“electron-devtools-installer”: “^2.2.4”,
“electron-packager”: “^14.2.1”,
“typescript”: “^3.8.3”
},