我一直在为我的项目制作新的vue页面时出错。错误的意思是:
Vetur在/xxxx/xxxxxx中找不到
tsconfig.json或jsconfig.json。
解决这个问题的办法是什么?
发布于 2021-04-08 10:02:09
若要创建文件:)
// tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node"
}
}https://stackoverflow.com/questions/67001648
复制相似问题