UNPKG

increment-type-check

Version:

用于 TS 项目的增量检查工具,可以帮助你管理存量错误并专注于新代码的质量。

13 lines 392 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const typeCheck_1 = require("./typeCheck"); const main = async () => { const args = process.argv.slice(2); const updateIgnore = args.includes("--update-ignore"); await (0, typeCheck_1.runIncrementalTypeCheck)({ updateIgnore, }); }; main(); //# sourceMappingURL=cli.js.map