首页 前端知识 TS2578: Unused ‘@ts-expect-error‘ directive.报错解决方案

TS2578: Unused ‘@ts-expect-error‘ directive.报错解决方案

2024-05-10 08:05:53 前端知识 前端哥 740 829 我要收藏

1.原因:Ts语法报错了,当vue文件不符合ts语法规范时就会报错,在终端如下报错示范:

 2.解决方案:

百度解决方案结果地址(自行选择打开阅读,下面我会提供步骤)

在ts配置文件中(文件名:tsconfig.json)选择整体代码替换为如下:

{
"compilerOptions": {
"target": "ES2016",
"module": "commonjs",
"lib": ["esnext", "dom"],
"allowJs": true,
"checkJs": false,
"jsx": "react",
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"noEmit": true,
"isolatedModules": true,
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"alwaysStrict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"baseUrl": "./",
"typeRoots": [
"./types/",
"./node_modules/@types"
],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}
}
复制

最后结束并重新运行即可解决。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/7864.html
标签
评论
还可以输入200
共0条数据,当前/页
发布的文章

JQuery中的load()、$

2024-05-10 08:05:15

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!