gpt4 book ai didi

typescript - 在 Ionic 2 应用程序中从 TSLint 中排除 node_modules

转载 作者:搜寻专家 更新时间:2023-10-30 21:14:03 24 4
gpt4 key购买 nike

我正在做一个 Ionic 2 项目,我在使用 linter 时遇到了一些麻烦,我希望有人能帮助甚至澄清。

我正在使用 ng2-image-cropper在项目中,它似乎没有通过 linter 运行:

问题是,每当我运行 ionic_app_scripts serve 时,即使明确指定在 linting 时应排除所有 node_modules,终端仍会充满 linting 错误。

tsconfig.json 看起来像这样:

...
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
],

有什么方法可以在运行 ionic_app_scripts serve 时禁用 TSLint或者让 tslint 知道我不关心 node_modules 中的代码?

github 上已经有问题了但它似乎还没有解决,所以它可能是不可能的,但任何 hack 都会很好

最佳答案

如 suraj 所说,将此配置放入 tslint.json。

我不知道 ionic2 是什么,但您也可以从命令行中排除文件:

tslint -c tslint.json --exclude="**/*.d.ts" --exclude="node_modules/**/*.ts" "**/*.ts"

关于typescript - 在 Ionic 2 应用程序中从 TSLint 中排除 node_modules,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42483922/

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