-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v3 Breaks Typescript Build #193
Comments
I have an error that I believe is related when using the Vue 2.6 build tools. I see a message in the console "This dependency was not found" with the suggestion "To install it, you can run: npm install --save retry-axios" Code: import * as rax from "retry-axios"; Results in: ERROR Failed to compile with 1 error
This dependency was not found:
* retry-axios in ./src/backend/tracking/tracking-client.ts
To install it, you can run: npm install --save retry-axios My {
"name": "ui",
"version": "1.0.0-0",
"scripts": {
"serve": "vue-cli-service serve --port 8082",
"build": "vue-cli-service build"
},
"dependencies": {
"axios": "0.26.0",
"retry-axios": "^3.0.0",
"vue": "2.6.14",
"vue-router": "3.5.2",
"vuetify": "2.5.6",
"vuex": "3.6.2"
},
"devDependencies": {
"@typescript-eslint/parser": "5.10.1",
"@vue/cli-plugin-babel": "4.5.15",
"@vue/cli-plugin-eslint": "5.0.4",
"@vue/cli-plugin-router": "4.5.15",
"@vue/cli-plugin-typescript": "4.5.13",
"@vue/cli-plugin-unit-jest": "4.5.13",
"@vue/cli-plugin-vuex": "5.0.4",
"@vue/cli-service": "4.5.13",
"ts-jest": "^26.5.6",
"typescript": "4.3.4"
}
}
Versions: |
I'm getting the same, happy to create a reproducible setup in somewhere like codesandbox if anyone is happy to look into this? |
Same here, getting error |
We see a different error
Adding config below to transform that file doesn't work
Removed |
+1 |
1 similar comment
+1 |
I am not entirely sure what the issue is but on v2.6.0 everything works so I reverted back to that version but when I attempted to build the same project o v3.0.0 with a node version of v16+ the build succeeds with no errors but when the code is run I get this error:
I attempted to change the import structure between both
And still got the same error.
Just curious if there is something obvious I need to do to be able to upgrade to v3.
The text was updated successfully, but these errors were encountered: