We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
3.5.0
https://github.com/vuejs/vuex/blob/v3.5.0/package.json#L11-L16
Run tsc or vue-cli-service build on repo with Vuex 3.5.0 installed.
tsc
vue-cli-service build
No errors.
7:26 Cannot find module './logger' or its corresponding type declarations. 5 | 6 | import { mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers } from "./helpers"; > 7 | import createLogger from "./logger"; | ^ 8 | 9 | export * from "./helpers"; 10 | export * from "./logger";
10:15 Cannot find module './logger' or its corresponding type declarations. 8 | 9 | export * from "./helpers"; > 10 | export * from "./logger"; | ^ 11 | 12 | export declare class Store<S> { 13 | constructor(options: StoreOptions<S>);
Fix: Add "types/helpers.d.ts", to package.json files config (https://github.com/vuejs/vuex/blob/v3.5.0/package.json#L11-L16).
"types/helpers.d.ts",
package.json
files
The text was updated successfully, but these errors were encountered:
Thanks for the report! Will close this one due to duplication #1788. The PR #1789 is open so we'll make a new release soon 🙏
Sorry, something went wrong.
No branches or pull requests
Version
3.5.0
Reproduction link
https://github.com/vuejs/vuex/blob/v3.5.0/package.json#L11-L16
Steps to reproduce
Run
tsc
orvue-cli-service build
on repo with Vuex 3.5.0 installed.What is expected?
No errors.
What is actually happening?
Fix: Add
"types/helpers.d.ts",
topackage.json
files
config (https://github.com/vuejs/vuex/blob/v3.5.0/package.json#L11-L16).The text was updated successfully, but these errors were encountered: