示例:
require('some-module-I-dont-own")
错误:
> tsc
node_modules/some-module-I-dont-own/types/lib/index.d.ts:1:1 - error TS1110: Type expected.
1 method: string | [string, ...unknown[]];
我不拥有此模块。这不是我的错误。我不能改变为什么我不能忽略错误?我将node_modules
放入tsconfig exclude中,但这没有帮助,因为我需要它。
编辑:这是我的tsconfig:
{
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true
},
"include": [
"lib"
],
"exclude": [
"node_modules"
]
}