1、错误提示:Could not find a declaration file for module ‘./App.vue’. ‘xxx/App.vue.js’ implicitly has an ‘any’ type.
解决办法:
在tsconfig.json文件中添加配置 "noImplicitAny": false
项,如图:
2、错误提示:SyntaxError: Cannot use import statement outside a module
解决办法:在package.json
中添加"type":"module"
,如图: