无法从自定义模块中输入 Import/Export 类型?

Unable to Import/Export types from a custom mdule?

我正在开发一个打字稿模块(作为更大的 monorepo 的一部分),我似乎无法将类型从一个包导入到另一个包(通过节点模块)。我的类型被构建为 ./types 和我的 package.json 作为其中的 types: types/index.d.ts 键。无论出于何种原因,在本地开发时,我似乎无法将类型导入另一个模块。

似乎它应该 工作 并且 npm/typescript 会适当地解决这些问题。

我的 tsconfig 如下所示:

{
    "extends": "../../tsconfig.json",
    "compilerOptions": {
        "baseUrl": "./src",
        "rootDir": "./src",
        "outDir": "./dist",
        "declaration": true,
        "declarationDir": "./types"
    },
    "include": [
        "./src"
    ],
    "exclude": [
        "node_modules",
        "dist"
    ]
}

用户错误 - 我在项目的 global.d.ts 中重新定义了库...