Error: Cannot find module 'typescript/package.json'

解决方法:

1.删除node_modules重新下载。

2.检查@vue/cli-plugin-typescript, ts-loader,typescript是否安装。

3.新建tsconfig.json文件,进行以下设置:

{
    "compilerOptions": {
      "target": "es6",
      "module": "commonjs",
      "strict": true,
      "strictNullChecks": true,
      "esModuleInterop": true,
      "experimentalDecorators": true
    }
  }

 

posted @ 2022-08-12 16:10  妄欢  阅读(2397)  评论(0编辑  收藏  举报