Vetur can't find `tsconfig.json` or `jsconfig.json` in /Users/shenglei/Downloads/myvue.
时间: 2023-12-21 22:06:41 浏览: 155
这个 error 通常是由于项目根目录下缺少 `tsconfig.json` 或 `jsconfig.json` 文件导致的。这些文件是 TypeScript 或 JavaScript 项目的必要文件,它们包含项目的编译选项和语言特性配置。
如果您确定项目根目录下确实没有这些文件,您需要在该目录下创建一个新的 `tsconfig.json` 或 `jsconfig.json` 文件。可以通过在终端中切换到项目根目录并运行 `tsc --init` 命令(TypeScript 项目)或 `npm init` 命令(JavaScript 项目)来创建一个新的配置文件。这些命令会引导您输入项目的相关信息,并生成一个新的配置文件。
创建完配置文件后,您需要确保文件名正确且文件内容符合您的需求。如果您不熟悉这些文件的配置选项,可以查看相关文档或参考其他项目的配置文件。
相关问题
❗ Incorrect Target Target version mismatch. You can specify the target version in vueCompilerOptions.target in tsconfig.json / jsconfig.json. (Expected "target": 2.7) vue version: 2.7.14 tsconfig target: 3 (default) vue: /Users/shenglei/Downloads/vue/myvue1/node_modules/vue/package.json tsconfig: file:///Users/shenglei/Downloads/vue/myvue1/jsconfig.json
这个问题的意思是你的 Vue 版本是 2.7.14,但是你的 TypeScript 编译器的目标版本是 3。为了解决这个问题,你需要在你的项目中的 `tsconfig.json` 或者 `jsconfig.json` 文件中指定目标版本为 2.7。你可以在 `vueCompilerOptions` 中添加一个 `target` 属性,并将其设置为 2.7,像这样:
```
{
"compilerOptions": {
// other options
"target": "es5"
},
"vueCompilerOptions": {
"target": 2.7
}
}
```
这样就可以解决这个问题了。记得保存文件并重新编译你的项目。
App.vue Doctor ❗ Incorrect Target Target version mismatch. You can specify the target version in vueCompilerOptions.target in tsconfig.json / jsconfig.json. (Expected "target": 2.7) vue version: 2.7.14 tsconfig target: 3 (default) vue: /Users/shenglei/Downloads/vue/myvue1/node_modules/vue/package.json tsconfig: file:///Users/shenglei/Downloads/vue/myvue1/jsconfig.json vueCompilerOptions: { "extensions": [ ".vue" ] }
这个错误是由于你的 TypeScript 编译器的目标版本和 Vue 的版本不匹配所导致的。你可以在项目的 `tsconfig.json` 或 `jsconfig.json` 文件中指定编译器的目标版本。在 `vueCompilerOptions` 对象中添加一个 `target` 属性并将其值设置为 `2.7` 即可解决这个问题。
例如:
```json
{
"compilerOptions": {
"target": "esnext"
},
"vueCompilerOptions": {
"target": 2.7,
"extensions": [".vue"]
}
}
```
在这个例子中,我们将 `target` 属性设置为了 `2.7`,以匹配 Vue 的版本。同时,我们也保留了 TypeScript 编译器的默认目标版本 `esnext`。
阅读全文