解决Vue3 tsconfig.json 报错:Option ‘importsNotUsedAsValues‘ is deprecated and will stop functioning in T
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
解决Vue3 tsconfig.json 报错:Option ‘importsNotUsedAsValues’ is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption ‘“ignoreDeprecations”: “5.0”’ to silence this error.
翻译
提示:不处理也不影响使用:
翻译:选项“importsNotUsedAsValues”已弃用,并将停止在TypeScript 5.5中运行。指定compilerOption“”ignoreDeprecations“:”5.0“”以消除此错误。
案例:
1.compilerOptions中加入"ignoreDeprecations": "5.0"即可
代码如下(示例):
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["src/**/*.ts", "src/**/*.vue", "src/types/**/*.d.ts"],
"compilerOptions": {
"ignoreDeprecations": "5.0",//加入这句代码即可
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": ["element-plus/global"]
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)