我正在尝试为“绝对类型”贡献一些新的类型定义,所以我在这里遵循指南:
https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/.github/PULL_REQUEST_TEMPLATE.md
可是我的脸上却散发着棉绒。
我尝试使用此命令创建一个全新的测试包:
npx dts-gen --dt --name test --template module
然后我用它在上面跑短毛绒:
npm run lint test
当我这样做时,我得到了错误:
Error: Expected `"strictFunctionTypes": true` or `"strictFunctionTypes": false`.
at Object.<anonymous> (/usr/local/lib/node_modules/dtslint/bin/checks.js:95:23)
at Generator.next (<anonymous>)
at fulfilled (/usr/local/lib/node_modules/dtslint/bin/checks.js:4:58)
答案 0 :(得分:0)
尝试使用与test
不同的名称,npx dts-gen --dt --name xxxx --template module
看起来不错:)