Vetur 查找 tsconfig.json 或 jsconfig.json 时出错

Joh*_*ere 7 tsconfig vue.js

我在为我的项目创建新的 vue 页面时不断收到错误。错误是这样说的:

Vetur在 /xxxx/xxxxxx 中找不到tsconfig.json或。jsconfig.json

解决这个问题的解决方案是什么?

tau*_*uzN 6

创建文件:)

请参阅文档

// tsconfig.json
{
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    // this enables stricter inference for data properties on `this`
    "strict": true,
    "jsx": "preserve",
    "moduleResolution": "node"
  }
}
Run Code Online (Sandbox Code Playgroud)

  • @JohnwasHere 在项目目录中创建一个名为“tsconfig.json”的新文件,并粘贴答案中的内容。 (2认同)