Closed ricardovanlaarhoven closed 5 months ago
I have just released v3-beta. Could you check if this issue still actual?
I'm not having the issue in the OP, but I do have an issue with v3-beta. I tried the beta, but had to downgrade to v2.1.11.
I kept getting the error that the module or types couldn't be found.
Cannot find module 'maska/vue' or its corresponding type declarations.
@LeanderD could you please show how you include Maska?
For one of my components this is the import I have:
import { vMaska, type MaskOptions } from 'maska/vue';
I'm using PNPM and in .npmrc
I have:
shamefully-hoist=true
Try to import MaskOptions from 'maska':
import { vMaska } from 'maska/vue';
import { type MaskOptions } from 'maska';
I'm sorry for my late reply.
After updating to the latest beta everything is working for me.
Thank you for feedback.
Describe the bug
on running (p)npm dev with vue and vite the following error is given:
Steps to reproduce
With my exisiting installation of my existing project, this error is not thrown, on a clean intall on the same pc and on other pc's and 1 mac i've got this error. on 2.1.10 and 2.1.11
With a new vue project using the vue installtion guide, this error is also occuring.