gpt4 book ai didi

javascript - 为单个文件禁用 TypeScript Inline

转载 作者:行者123 更新时间:2023-12-04 08:38:47 24 4
gpt4 key购买 nike

我有 TS 运行时出现错误,我想忽略、编译,但在使用时/* tslint:disable */运行我的构建时它仍然运行。

hutber@hutber:/var/www/bp/frontend$ git commit -m"feat: add basic foundations for theme & breadcrums"
husky > pre-commit (node v14.14.0)
$ tsc
components/Layouts/Breadcrums/index.tsx:17:13 - error TS2322: Type 'string' is not assignable to type 'HTMLCollection'.

17 {a}
~~~

最佳答案

在您的 tslint.json ,您可以尝试排除该文件:

{
"extends": "tslint:latest",
"linterOptions": {
"exclude": [
"bin",
"<path to your excluded file here>"
]
}
}
或将您的文件添加到 .eslintignore ,如果你有的话。

关于javascript - 为单个文件禁用 TypeScript Inline,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64663635/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com