Open jcortega opened 1 year ago
"skipLibCheck": true
in tsconfig.json
may help
tried "skipLibCheck": true
, but still got the same error. Also, tried to explicitly added node_modules to tsconfig exclude
, but no luck either.
For now I have set "noImplicitThis" to false in tsconfig. Looks to have fixed the issue, but not sure what the implication is. Vue recommended setting is true: https://github.com/vuejs/tsconfig/blob/main/tsconfig.json#L14-L15.
Using the "noImplicitThis": false
rule in my file tsconfig.json
I was able to get around this error, thank you! ✨
I'm still getting this error after Using the "noImplicitThis": false
rule in my file tsconfig.json
I'm working with electron and vue @CarterLi @jcortega
@jcortega @CarterLi Thanks I think It's working now I did not used that in tsconfig.web.json
Hi, I added the vue3 echarts component globally in main.ts as shown below:
main.ts
page vue:
It works in dev mode, but when trying to check type using vue-tsc. I get the error below.
Package versions:
Are there any option that I should enable?