ts-node 找不到我的类型定义文件

Dan*_*lan 6 node.js typescript ts-node

当我运行时,ts-node node_modules/jasmine/bin/jasmine 我收到这些错误:

tsc/globals.ts:7:12 - error TS2304: Cannot find name 'SugarcubeState'.

7     State: SugarcubeState;
             ~~~~~~~~~~~~~~
Run Code Online (Sandbox Code Playgroud)

这是该全局文件:

/* eslint-disable @typescript-eslint/no-explicit-any */
console.log("global.ts");

// eslint-disable-next-line @typescript-eslint/no-namespace
declare namespace NodeJS {
  interface Global {
    State: SugarcubeState;
    setup: {};
  }
}

declare const State: SugarcubeState = {
  variables: {}
};

declare const setup: any = {
  variables: {}
};

Run Code Online (Sandbox Code Playgroud)

这是我的 index.d.ts:

type SugarcubeVariables = {
};

type SugarcubeState = { variables: SugarcubeVariables };
Run Code Online (Sandbox Code Playgroud)

它们都在同一个目录中,Visual Studio 代码没有抱怨任何东西。为什么 ts-node 似乎找不到我的类型定义文件?

我用谷歌搜索并找到了这个网站:https : //github.com/TypeStrong/ts-node#help-my-types-are-missing按照它的建议,我修改了我的 tsconfig 文件

"typeRoots": ["tsc"],                       /* List of folders to include type definitions from. */
Run Code Online (Sandbox Code Playgroud)

在其中,但它对错误没有影响。我也试过这个:

    "types": ["tsc/index.d.ts"],                           /* Type declaration files to be included in compilation. */
Run Code Online (Sandbox Code Playgroud)

但同样,我收到的错误没有区别。如何让 ts-node 识别我的 .d.ts 文件?

PS:如果您想知道为什么我要这样定义事物,请参阅此答案/sf/answers/3046676111/


我重读了那个链接,看来我需要一个非常具体的目录结构。问题是,它说我只需要这个目录结构中的模块名称,并且考虑到我编写 index.d.ts 的方式,我不知道该目录的名称。

min*_*lid 20

启用 ts-node--files选项,tsconfig.json如下所示:

{
  "ts-node": {
    "files": true
  },
  "compilerOptions": {
    // ....
  }
}
Run Code Online (Sandbox Code Playgroud)

延伸阅读