- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的目标是运行一个提供 Angular 前端的 nestjs 应用程序。我在项目的根目录下有一个 Angular cli 脚手架应用程序(使用 @angular/cli 最新的 v8 测试版构建)。在这个文件夹中,我使用了 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.
最佳答案
所以我认为 typescript 正在寻找跨父目录的类型(显然一直到“/”)是正确的。
我通过将以下命令添加到我的 nestjs 应用程序中 tsconfig 的 compilerOptions 部分来解决此问题:
"typeRoots": ["./node_modules/@types"],
关于angular - 运行 start :prod on fresh project 时,由 node_modules 中的 @types 依赖项引起的 NestJs 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56266800/
我在 gobject 上阅读了一个维基百科页面,上面写着, Depending only on GLib and libc, GObject is a cornerstone of GNOME and
如何注册一个依赖属性,其值是使用另一个依赖属性的值计算的? 由于 .NET 属性包装器在运行时被 WPF 绕过,因此不应在 getter 和 setter 中包含逻辑。解决方案通常是使用 Proper
我一直在尝试将 ActionbarSherlock maven 依赖项添加到我的项目中 com.actionbarsherlock library 4.2.0 在我的 po
http://tutorials.jenkov.com/ood/understanding-dependencies.html#whatis说(强调我的): Whenever a class A us
我对所有这些魔法有点不清楚。 据我了解,依赖属性是从 DependencyObject 继承的,因此存储值: 如果分配了值(在本地字典中),则在实例本身中 或者如果未指定值,则从指向父元素的链接中获取
我刚刚更新了在 ASP.NET Framework 4.5.2 版上运行的 MVC Web 应用程序。我正在使用 Twilio 发送 SMS 消息: var twilio = new TwilioRe
我刚刚发现了一件令人生畏的事情。 spring 依赖坐标有两个版本。 项目依赖于 spring mvc 和 spring flow。有两组并行的依赖项。 Spring MVC 具有以下方案的依赖项
我正在尝试包含 的 maven 依赖项 org.jacorb jacorb 2.3.1 依赖已解决,但它导致另一个依赖 picocontainer 出现问题: [ERROR
我正在尝试在 Haskell 项目中包含特定版本的库。该库是住宿加早餐型的(用于 martix 操作),但我需要特定的 0.4.3 版本,该版本修复了乘法实现的错误。 所以,我的 stack.yaml
有谁知道如何制作依赖的 UIPickerView.例如,当我选择组件一的第 2 行时,组件二的标题会发生变化吗? 我在互联网上查找过,没有真正的答案,我尝试过使用 if 和 switch 语句,但它们
我正在编写一个用于验收测试的项目,由于各种原因,这依赖于另一个打包为 WAR 的项目。我已成功使用 maven-dependency-plugin 解压 WAR,但无法让我的项目包含解压的 WEB-I
或多或少我在 session 上大量构建我的网站(特别是重定向用户等),我很好奇这是否是一种危险的做法。禁用浏览器 cookie 保存的用户的大致比例是多少?我愿意接受任何建议:) 谢谢 最佳答案 s
开始玩 Scala futures,我被依赖的 futures 困住了。 让我们举个例子。我搜索地点并获得 Future[Seq[Place]]。对于这些地点中的每一个,我搜索最近的地铁站(该服务返回
或多或少我在 session 上大量构建我的网站(特别是重定向用户等),我很好奇这是否是一种危险的做法。禁用浏览器 cookie 保存的用户的大致比例是多少?我愿意接受任何建议:) 谢谢 最佳答案 s
我有一个二进制文件,需要一些 *.so 文件才能执行。现在,当我尝试在一些旧机器上执行它时,它会显示 /lib/libc.so.6: version `GLIBC_2.4' not found 如何将
我尝试使用 Dygraph 来表示图表,我在 https://github.com/danvk/dygraphs 中找到了代码,但是它有太多的依赖文件,我觉得很烦人。是否有一个文件可以容纳所有必需的
我正在处理一个 javascript 文件,该文件 a) 声明一个具有函数的对象,并且 b) 使用它期望在外部声明的散列调用该对象的 init 函数。我的 Jasmine 规范提示它找不到哈希,因为它
最近我一直在学习 Angular 并且进展顺利,但是关于依赖注入(inject)的一些事情我仍然不清楚。 是否有任何理由在我的 app.js 文件中声明我的应用程序的其他部分(服务、 Controll
考虑一个名为 foo 的表,它有 id (PRIMARY & AUTO_INCREMENT) 列。我正在向该表中插入一行,挑战从此时开始。 $db->query("INSERT INTO `foo`
我正在使用级联下拉 jquery 插件。 (https://github.com/dnasir/jquery-cascading-dropdown) 我有两个下拉菜单。 “客户端”和“站点”。 根据您
我是一名优秀的程序员,十分优秀!