NestJs 错误源于 node_modules 中的 @types 依赖关系,在新项目上运行 start:prod

Posted

技术标签:

【中文标题】NestJs 错误源于 node_modules 中的 @types 依赖关系,在新项目上运行 start:prod【英文标题】:NestJs Errors stemming from @types dependencies in node_modules when running start:prod on fresh project 【发布时间】:2019-10-09 12:44:48 【问题描述】:

我的目标是运行一个为 Angular 前端提供服务的 nestjs 应用程序。我在项目的根目录中有一个 Angular cli 脚手架应用程序(使用 @angular/cli 最新 v8 beta 构建)。在这个文件夹中,我使用了 nestjs cli 搭建了一个新的 nestjs 应用程序(应用程序名称是服务器)。

然后我 cd 进入服务器并运行 npm run start:prod 并得到以下错误:


../node_modules/@types/jasmine/ts3.1/index.d.ts:15:1 - error TS6200: Definitions of the following identifiers conflict with those in another file: describe, fdescribe, xdescribe, it, fit, xit, beforeEach, afterEach, beforeAll, afterAll, expect, CustomEqualityTester,
CustomMatcherFactory, DEFAULT_TIMEOUT_INTERVAL

15 type ImplementationCallback = (() => Promise<any>) | ((done: DoneFn) => void);
   ~~~~

  node_modules/@types/jest/index.d.ts:24:1
    24 declare var beforeAll: jest.Lifecycle;
       ~~~~~~~
    Conflicts are in this file.

../node_modules/@types/jasmine/ts3.1/index.d.ts:235:9 - error TS2375: Duplicate number index signature.

235         [n: number]: T;
            ~~~~~~~~~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:238:15 - error TS2428: All declarations of 'ArrayContaining' must have identical type parameters.

238     interface ArrayContaining<T> 
                  ~~~~~~~~~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:245:15 - error TS2428: All declarations of 'ObjectContaining' must have identical type parameters.

245     interface ObjectContaining<T> 
                  ~~~~~~~~~~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:287:9 - error TS2374: Duplicate string index signature.

287         [index: string]: CustomMatcherFactory;
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:292:9 - error TS2687: All declarations of 'message' must have identical modifiers.

292         message?: string;
            ~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:292:9 - error TS2717: Subsequent property declarations must have the same type.  Property 'message' must be of type 'string | (() => string)', but here has type 'string'.

292         message?: string;
            ~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:718:15 - error TS2428: All declarations of 'SpyAnd' must have identical type parameters.

718     interface SpyAnd<Fun extends InferableFunction> 
                  ~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:735:15 - error TS2428: All declarations of 'Calls' must have identical type parameters.

735     interface Calls<Fun extends InferableFunction> 
                  ~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:754:15 - error TS2428: All declarations of 'CallInfo' must have identical type parameters.

754     interface CallInfo<Fun extends InferableFunction> 
                  ~~~~~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:758:9 - error TS2717: Subsequent property declarations must have the same type.  Property 'args' must be of type 'any[]', but here has type 'Parameters<Fun>'.

758         args: Parameters<Fun>;
            ~~~~

../node_modules/@types/jasmine/ts3.1/index.d.ts:760:9 - error TS2717: Subsequent property declarations must have the same type.  Property 'returnValue' must be of type 'any', but here has type 'ReturnType<Fun>'.

760         returnValue: ReturnType<Fun>;
            ~~~~~~~~~~~

../node_modules/@types/jasminewd2/index.d.ts:10:18 - error TS2300: Duplicate identifier 'it'.

10 declare function it(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~

  node_modules/@types/jest/index.d.ts:31:13
    31 declare var it: jest.It;
                   ~~
    'it' was also declared here.

../node_modules/@types/jasminewd2/index.d.ts:11:18 - error TS2300: Duplicate identifier 'fit'.

11 declare function fit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~~

  node_modules/@types/jest/index.d.ts:32:13
    32 declare var fit: jest.It;
                   ~~~
    'fit' was also declared here.

../node_modules/@types/jasminewd2/index.d.ts:12:18 - error TS2300: Duplicate identifier 'xit'.

12 declare function xit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~~

  node_modules/@types/jest/index.d.ts:33:13
    33 declare var xit: jest.It;
                   ~~~
    'xit' was also declared here.

../node_modules/@types/jasminewd2/index.d.ts:13:18 - error TS2300: Duplicate identifier 'beforeEach'.

13 declare function beforeEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~~~~~~~~~

  node_modules/@types/jest/index.d.ts:25:13
    25 declare var beforeEach: jest.Lifecycle;
                   ~~~~~~~~~~
    'beforeEach' was also declared here.

../node_modules/@types/jasminewd2/index.d.ts:14:18 - error TS2300: Duplicate identifier 'afterEach'.

14 declare function afterEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~~~~~~~~

  node_modules/@types/jest/index.d.ts:27:13
    27 declare var afterEach: jest.Lifecycle;
                   ~~~~~~~~~
    'afterEach' was also declared here.

../node_modules/@types/jasminewd2/index.d.ts:15:18 - error TS2300: Duplicate identifier 'beforeAll'.

15 declare function beforeAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~~~~~~~~

  node_modules/@types/jest/index.d.ts:24:13
    24 declare var beforeAll: jest.Lifecycle;
                   ~~~~~~~~~
    'beforeAll' was also declared here.

../node_modules/@types/jasminewd2/index.d.ts:16:18 - error TS2300: Duplicate identifier 'afterAll'.

16 declare function afterAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                    ~~~~~~~~

  node_modules/@types/jest/index.d.ts:26:13
    26 declare var afterAll: jest.Lifecycle;
                   ~~~~~~~~
    'afterAll' was also declared here.

node_modules/@types/jest/index.d.ts:24:1 - error TS6200: Definitions of the following identifiers conflict with those in another file: describe, fdescribe, xdescribe, it, fit, xit, beforeEach, afterEach, beforeAll, afterAll, expect, CustomEqualityTester, CustomMatcherFactory, DEFAULT_TIMEOUT_INTERVAL

24 declare var beforeAll: jest.Lifecycle;
   ~~~~~~~

  ../node_modules/@types/jasmine/ts3.1/index.d.ts:15:1
    15 type ImplementationCallback = (() => Promise<any>) | ((done: DoneFn) => void);
       ~~~~
    Conflicts are in this file.

node_modules/@types/jest/index.d.ts:24:13 - error TS2300: Duplicate identifier 'beforeAll'.

24 declare var beforeAll: jest.Lifecycle;
               ~~~~~~~~~

  ../node_modules/@types/jasminewd2/index.d.ts:15:18
    15 declare function beforeAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~~~~~~~~
    'beforeAll' was also declared here.

node_modules/@types/jest/index.d.ts:25:13 - error TS2300: Duplicate identifier 'beforeEach'.

25 declare var beforeEach: jest.Lifecycle;
               ~~~~~~~~~~

  ../node_modules/@types/jasminewd2/index.d.ts:13:18
    13 declare function beforeEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~~~~~~~~~
    'beforeEach' was also declared here.

node_modules/@types/jest/index.d.ts:26:13 - error TS2300: Duplicate identifier 'afterAll'.

26 declare var afterAll: jest.Lifecycle;
               ~~~~~~~~

  ../node_modules/@types/jasminewd2/index.d.ts:16:18
    16 declare function afterAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~~~~~~~
    'afterAll' was also declared here.

node_modules/@types/jest/index.d.ts:27:13 - error TS2300: Duplicate identifier 'afterEach'.

27 declare var afterEach: jest.Lifecycle;
               ~~~~~~~~~

  ../node_modules/@types/jasminewd2/index.d.ts:14:18
    14 declare function afterEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~~~~~~~~
    'afterEach' was also declared here.

node_modules/@types/jest/index.d.ts:31:13 - error TS2300: Duplicate identifier 'it'.

31 declare var it: jest.It;
               ~~

  ../node_modules/@types/jasminewd2/index.d.ts:10:18
    10 declare function it(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~
    'it' was also declared here.

node_modules/@types/jest/index.d.ts:32:13 - error TS2300: Duplicate identifier 'fit'.

32 declare var fit: jest.It;
               ~~~

  ../node_modules/@types/jasminewd2/index.d.ts:11:18
    11 declare function fit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~~
    'fit' was also declared here.

node_modules/@types/jest/index.d.ts:33:13 - error TS2300: Duplicate identifier 'xit'.

33 declare var xit: jest.It;
               ~~~

  ../node_modules/@types/jasminewd2/index.d.ts:12:18
    12 declare function xit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
                        ~~~
    'xit' was also declared here.

node_modules/@types/jest/index.d.ts:1009:46 - error TS2314: Generic type 'ArrayContaining<T>' requires 1 type argument(s).

1009     function arrayContaining(sample: any[]): ArrayContaining;
                                                  ~~~~~~~~~~~~~~~

node_modules/@types/jest/index.d.ts:1010:45 - error TS2314: Generic type 'ObjectContaining<T>' requires 1 type argument(s).

1010     function objectContaining(sample: any): ObjectContaining;
                                                 ~~~~~~~~~~~~~~~~

node_modules/@types/jest/index.d.ts:1036:15 - error TS2428: All declarations of 'ArrayContaining' must have identical type parameters.

1036     interface ArrayContaining 
                   ~~~~~~~~~~~~~~~

node_modules/@types/jest/index.d.ts:1042:15 - error TS2428: All declarations of 'ObjectContaining' must have identical type parameters.

1042     interface ObjectContaining 
                   ~~~~~~~~~~~~~~~~

node_modules/@types/jest/index.d.ts:1051:14 - error TS2314: Generic type 'SpyAnd<Fun>' requires 1 type argument(s).

1051         and: SpyAnd;
                  ~~~~~~

node_modules/@types/jest/index.d.ts:1052:16 - error TS2314: Generic type 'Calls<Fun>' requires 1 type argument(s).

1052         calls: Calls;
                    ~~~~~

node_modules/@types/jest/index.d.ts:1058:15 - error TS2428: All declarations of 'SpyAnd' must have identical type parameters.

1058     interface SpyAnd 
                   ~~~~~~

node_modules/@types/jest/index.d.ts:1091:15 - error TS2428: All declarations of 'Calls' must have identical type parameters.

1091     interface Calls 
                   ~~~~~

node_modules/@types/jest/index.d.ts:1117:16 - error TS2314: Generic type 'CallInfo<Fun>' requires 1 type argument(s).

1117         all(): CallInfo[];
                    ~~~~~~~~

node_modules/@types/jest/index.d.ts:1122:23 - error TS2314: Generic type 'CallInfo<Fun>' requires 1 type argument(s).

1122         mostRecent(): CallInfo;
                           ~~~~~~~~

node_modules/@types/jest/index.d.ts:1127:18 - error TS2314: Generic type 'CallInfo<Fun>' requires 1 type argument(s).

1127         first(): CallInfo;
                      ~~~~~~~~

node_modules/@types/jest/index.d.ts:1134:15 - error TS2428: All declarations of 'CallInfo' must have identical type parameters.

1134     interface CallInfo 
                   ~~~~~~~~

node_modules/@types/jest/index.d.ts:1170:9 - error TS2687: All declarations of 'message' must have identical modifiers.

1170         message: string | (() => string);
             ~~~~~~~


Found 40 errors.

npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! server@0.0.1 build: `tsc -p tsconfig.build.json`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the server@0.0.1 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/ubuntu/.npm/_logs/2019-05-23T00_35_21_233Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! server@0.0.1 prestart:prod: `rimraf dist && npm run build`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the server@0.0.1 prestart:prod script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

我正在使用节点版本 12 的 bash(windows linux 子系统)。我没有接触任何东西,这两个应用程序都是从 CLI 新创建的。

npm run start 可以正常工作。

当我自己创建一个单独的项目时,nestjs 应用程序工作正常,只有当它位于包含 Angular 应用程序的根目录内时,才会出现问题。 tsconfig 文件是否会锁定父目录并导致问题?

【问题讨论】:

【参考方案1】:

所以我认为打字稿正在寻找跨父目录的类型是正确的(显然一直到“/”)。

我通过将以下命令添加到我的 nestjs 应用程序的 tsconfig 的 compilerOptions 部分来解决此问题:

"typeRoots": ["./node_modules/@types"],

告诉它只在那个目录中寻找类型。

【讨论】:

Funciono perfectamente para mi 非常感谢。我的 nestjs 应用程序也突然停止工作,和你的问题一样。我已经删除了 node_modules、package-lock.json、重新安装、更新了软件包……没有任何效果,只有你的这条神奇线。

以上是关于NestJs 错误源于 node_modules 中的 @types 依赖关系,在新项目上运行 start:prod的主要内容,如果未能解决你的问题,请参考以下文章

如何使用捆绑包中的 node_modules 依赖项正确构建用于生产的 NestJS 应用程序?

输入 express &nestjs,启动项目报错

在 Nx 工作区中运行 NestJS 构建工件时出错

如何部署 Nestjs 应用程序(在 Azure 上)?

如何在 Nestjs 中使用 .env 文件设置 Typeorm 的配置

Nestjs - @nestjs/graphql GraphQLGatewayModule 总是返回错误请求