0๐
โ
The errors are
module "d:/learning/vue-3-ts-demo/node_modules/webpack/types"Require statement not part of import statement`.
For this error, I delt with it by adding '@typescript-eslint/no-var-requires': 0
in.eslintrc.js
rules: {
'@typescript-eslint/no-var-requires': 0
}
I have install webpack 5.65.0
Since my vue CLI is 4.5.14, I reinstall webpack version as 4.x too, and it works finally.
Source:stackexchange.com