Vetur can't find `tsconfig.json` or `jsconfig.json` in d:\workspace\me\cm-web.
时间: 2023-08-03 08:06:31 浏览: 180
前端框架vue.js,自己写的初入门
这个问题通常发生在使用 Vue.js 项目时。Vetur 需要通过 `tsconfig.json` 或 `jsconfig.json` 文件来识别 Vue.js 项目中的 TypeScript 或 JavaScript 文件。如果这些文件不存在,Vetur 将无法正常工作。
您需要在 `d:\workspace\me\cm-web` 目录下创建一个名为 `tsconfig.json` 或 `jsconfig.json` 的文件,并将其配置为您的项目。您可以通过以下方式创建一个基本的 `tsconfig.json` 文件:
```json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowJs": true,
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}
```
如果您的项目使用 JavaScript 而不是 TypeScript,则需要创建 `jsconfig.json` 文件,并将其配置为您的项目。以下是一个基本的 `jsconfig.json` 文件示例:
```json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"exclude": ["node_modules"]
}
```
完成后,保存文件并重启编辑器,Vetur 应该可以找到您的配置文件并正常工作了。
阅读全文