这是我们的环境

> \node_modules\.bin\tslint --version
4.0.1

> npm install --save-dev tslint-microsoft-contrib
`-- [email protected]

这是我们的 tslint.json 配置。
{
    "extends": [
        "./node_modules/tslint-microsoft-contrib/tslint.json"
    ]
}

当我们使用该配置运行本地 tslint 时会发生这种情况。
> node_modules\.bin\tslint --config .\tslint.json --project .\tsconfig.json
module.js:471
throw err;
^

Error: Cannot find module 'tslint/lib/lint'
    at Function.Module._resolveFilename (module.js:469:15)
    at Function.Module._load (module.js:417:25)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (C:\myApp\node_modules\tslint-microsoft-contrib\insecureRandomRule.js:7:12)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)

我们如何在扩展 tslint 的配置上运行 tslint-microsoft-contrib

最佳答案

您需要降级到 tslint 3.xx,tslint-microsoft-contrib 尚不支持 tslint 4,PR #314 应该解决这个问题,PR 看起来已经完成,但测试需要升级 grunt-tslint 以支持 tslint 4 .同时,您可以继续使用 tslint@3

关于typescript - 错误 : Cannot find module 'tslint/lib/lint' when trying to extend tslint-microsoft-contrib,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40749996/

10-12 16:24