Typescript 未检测声明 "d.ts" 文件中不存在的类型名称的错误

Typescript is not detecting errors for nonexistent type names in declaration "d.ts" files

在 Typescript 游乐场的这个 example 中,我试图在命名空间中使用 不存在的类型 ,但出现错误:

这是预料之中的。

但在我的本地开发环境中,Typescript 基本上接受任何不存在的类型作为 any

注意:这只发生在 d.ts 个文件中。

不知道这是否重要,但我正在使用 noImplicitAny: true 标志。

查看我的 tsconfig.json 文件:

{
  "compilerOptions": {
    "allowJs": true,
    "baseUrl": ".",
    "esModuleInterop": true,
    "jsx": "react",
    "module": "CommonJS",
    "moduleResolution": "Node",
    "noEmit": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "sourceMap": true,
    "strictNullChecks": true,
    "target": "ES6",
    "paths": {
      "@src/*": ["./src/*"],
    }
  },
  "include": [
    "src/**/*",
    "functions/src/**/*",
    "functions/index.ts"
  ],
}

如何让 Typescript 检测到这些错误?

声明文件,带有 .d.ts 的文件被 --skipLibCheck 编译器选项覆盖。

通过指定

{
  "compilerOptions": {
    "skipLibCheck": true
  }
}

在您的 tsconfig.json 中,您已告知 TypeScript 不要验证此文件。

一般来说,您有两种选择来强制验证此文件。

  1. 将文件从 .d.ts 重命名为 .ts。这是最直接的方法,也是侵入性最小的方法。 .ts 只包含声明的文件是完全有效的。

  2. 删除上面的 "skipLibCheck": true 配置,从而在 .d.ts 文件中强制执行类型检查,这是默认行为。