Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.91 KB | None | 0 0
  1. ../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,
  2. CustomMatcherFactory, DEFAULT_TIMEOUT_INTERVAL
  3.  
  4. 15 type ImplementationCallback = (() => Promise<any>) | ((done: DoneFn) => void);
  5. ~~~~
  6.  
  7. node_modules/@types/jest/index.d.ts:24:1
  8. 24 declare var beforeAll: jest.Lifecycle;
  9. ~~~~~~~
  10. Conflicts are in this file.
  11.  
  12. ../node_modules/@types/jasmine/ts3.1/index.d.ts:235:9 - error TS2375: Duplicate number index signature.
  13.  
  14. 235 [n: number]: T;
  15. ~~~~~~~~~~~~~~~
  16.  
  17. ../node_modules/@types/jasmine/ts3.1/index.d.ts:238:15 - error TS2428: All declarations of 'ArrayContaining' must have identical type parameters.
  18.  
  19. 238 interface ArrayContaining<T> {
  20. ~~~~~~~~~~~~~~~
  21.  
  22. ../node_modules/@types/jasmine/ts3.1/index.d.ts:245:15 - error TS2428: All declarations of 'ObjectContaining' must have identical type parameters.
  23.  
  24. 245 interface ObjectContaining<T> {
  25. ~~~~~~~~~~~~~~~~
  26.  
  27. ../node_modules/@types/jasmine/ts3.1/index.d.ts:287:9 - error TS2374: Duplicate string index signature.
  28.  
  29. 287 [index: string]: CustomMatcherFactory;
  30. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  31.  
  32. ../node_modules/@types/jasmine/ts3.1/index.d.ts:292:9 - error TS2687: All declarations of 'message' must have identical modifiers.
  33.  
  34. 292 message?: string;
  35. ~~~~~~~
  36.  
  37. ../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'.
  38.  
  39. 292 message?: string;
  40. ~~~~~~~
  41.  
  42. ../node_modules/@types/jasmine/ts3.1/index.d.ts:718:15 - error TS2428: All declarations of 'SpyAnd' must have identical type parameters.
  43.  
  44. 718 interface SpyAnd<Fun extends InferableFunction> {
  45. ~~~~~~
  46.  
  47. ../node_modules/@types/jasmine/ts3.1/index.d.ts:735:15 - error TS2428: All declarations of 'Calls' must have identical type parameters.
  48.  
  49. 735 interface Calls<Fun extends InferableFunction> {
  50. ~~~~~
  51.  
  52. ../node_modules/@types/jasmine/ts3.1/index.d.ts:754:15 - error TS2428: All declarations of 'CallInfo' must have identical type parameters.
  53.  
  54. 754 interface CallInfo<Fun extends InferableFunction> {
  55. ~~~~~~~~
  56.  
  57. ../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>'.
  58.  
  59. 758 args: Parameters<Fun>;
  60. ~~~~
  61.  
  62. ../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>'.
  63.  
  64. 760 returnValue: ReturnType<Fun>;
  65. ~~~~~~~~~~~
  66.  
  67. ../node_modules/@types/jasminewd2/index.d.ts:10:18 - error TS2300: Duplicate identifier 'it'.
  68.  
  69. 10 declare function it(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
  70. ~~
  71.  
  72. node_modules/@types/jest/index.d.ts:31:13
  73. 31 declare var it: jest.It;
  74. ~~
  75. 'it' was also declared here.
  76.  
  77. ../node_modules/@types/jasminewd2/index.d.ts:11:18 - error TS2300: Duplicate identifier 'fit'.
  78.  
  79. 11 declare function fit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
  80. ~~~
  81.  
  82. node_modules/@types/jest/index.d.ts:32:13
  83. 32 declare var fit: jest.It;
  84. ~~~
  85. 'fit' was also declared here.
  86.  
  87. ../node_modules/@types/jasminewd2/index.d.ts:12:18 - error TS2300: Duplicate identifier 'xit'.
  88.  
  89. 12 declare function xit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
  90. ~~~
  91.  
  92. node_modules/@types/jest/index.d.ts:33:13
  93. 33 declare var xit: jest.It;
  94. ~~~
  95. 'xit' was also declared here.
  96.  
  97. ../node_modules/@types/jasminewd2/index.d.ts:13:18 - error TS2300: Duplicate identifier 'beforeEach'.
  98.  
  99. 13 declare function beforeEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  100. ~~~~~~~~~~
  101.  
  102. node_modules/@types/jest/index.d.ts:25:13
  103. 25 declare var beforeEach: jest.Lifecycle;
  104. ~~~~~~~~~~
  105. 'beforeEach' was also declared here.
  106.  
  107. ../node_modules/@types/jasminewd2/index.d.ts:14:18 - error TS2300: Duplicate identifier 'afterEach'.
  108.  
  109. 14 declare function afterEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  110. ~~~~~~~~~
  111.  
  112. node_modules/@types/jest/index.d.ts:27:13
  113. 27 declare var afterEach: jest.Lifecycle;
  114. ~~~~~~~~~
  115. 'afterEach' was also declared here.
  116.  
  117. ../node_modules/@types/jasminewd2/index.d.ts:15:18 - error TS2300: Duplicate identifier 'beforeAll'.
  118.  
  119. 15 declare function beforeAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  120. ~~~~~~~~~
  121.  
  122. node_modules/@types/jest/index.d.ts:24:13
  123. 24 declare var beforeAll: jest.Lifecycle;
  124. ~~~~~~~~~
  125. 'beforeAll' was also declared here.
  126.  
  127. ../node_modules/@types/jasminewd2/index.d.ts:16:18 - error TS2300: Duplicate identifier 'afterAll'.
  128.  
  129. 16 declare function afterAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  130. ~~~~~~~~
  131.  
  132. node_modules/@types/jest/index.d.ts:26:13
  133. 26 declare var afterAll: jest.Lifecycle;
  134. ~~~~~~~~
  135. 'afterAll' was also declared here.
  136.  
  137. 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
  138.  
  139. 24 declare var beforeAll: jest.Lifecycle;
  140. ~~~~~~~
  141.  
  142. ../node_modules/@types/jasmine/ts3.1/index.d.ts:15:1
  143. 15 type ImplementationCallback = (() => Promise<any>) | ((done: DoneFn) => void);
  144. ~~~~
  145. Conflicts are in this file.
  146.  
  147. node_modules/@types/jest/index.d.ts:24:13 - error TS2300: Duplicate identifier 'beforeAll'.
  148.  
  149. 24 declare var beforeAll: jest.Lifecycle;
  150. ~~~~~~~~~
  151.  
  152. ../node_modules/@types/jasminewd2/index.d.ts:15:18
  153. 15 declare function beforeAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  154. ~~~~~~~~~
  155. 'beforeAll' was also declared here.
  156.  
  157. node_modules/@types/jest/index.d.ts:25:13 - error TS2300: Duplicate identifier 'beforeEach'.
  158.  
  159. 25 declare var beforeEach: jest.Lifecycle;
  160. ~~~~~~~~~~
  161.  
  162. ../node_modules/@types/jasminewd2/index.d.ts:13:18
  163. 13 declare function beforeEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  164. ~~~~~~~~~~
  165. 'beforeEach' was also declared here.
  166.  
  167. node_modules/@types/jest/index.d.ts:26:13 - error TS2300: Duplicate identifier 'afterAll'.
  168.  
  169. 26 declare var afterAll: jest.Lifecycle;
  170. ~~~~~~~~
  171.  
  172. ../node_modules/@types/jasminewd2/index.d.ts:16:18
  173. 16 declare function afterAll(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  174. ~~~~~~~~
  175. 'afterAll' was also declared here.
  176.  
  177. node_modules/@types/jest/index.d.ts:27:13 - error TS2300: Duplicate identifier 'afterEach'.
  178.  
  179. 27 declare var afterEach: jest.Lifecycle;
  180. ~~~~~~~~~
  181.  
  182. ../node_modules/@types/jasminewd2/index.d.ts:14:18
  183. 14 declare function afterEach(action: (done: DoneFn) => Promise<void>, timeout?: number): void;
  184. ~~~~~~~~~
  185. 'afterEach' was also declared here.
  186.  
  187. node_modules/@types/jest/index.d.ts:31:13 - error TS2300: Duplicate identifier 'it'.
  188.  
  189. 31 declare var it: jest.It;
  190. ~~
  191.  
  192. ../node_modules/@types/jasminewd2/index.d.ts:10:18
  193. 10 declare function it(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
  194. ~~
  195. 'it' was also declared here.
  196.  
  197. node_modules/@types/jest/index.d.ts:32:13 - error TS2300: Duplicate identifier 'fit'.
  198.  
  199. 32 declare var fit: jest.It;
  200. ~~~
  201.  
  202. ../node_modules/@types/jasminewd2/index.d.ts:11:18
  203. 11 declare function fit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
  204. ~~~
  205. 'fit' was also declared here.
  206.  
  207. node_modules/@types/jest/index.d.ts:33:13 - error TS2300: Duplicate identifier 'xit'.
  208.  
  209. 33 declare var xit: jest.It;
  210. ~~~
  211.  
  212. ../node_modules/@types/jasminewd2/index.d.ts:12:18
  213. 12 declare function xit(expectation: string, assertion?: (done: DoneFn) => Promise<void>, timeout?: number): void;
  214. ~~~
  215. 'xit' was also declared here.
  216.  
  217. node_modules/@types/jest/index.d.ts:1009:46 - error TS2314: Generic type 'ArrayContaining<T>' requires 1 type argument(s).
  218.  
  219. 1009 function arrayContaining(sample: any[]): ArrayContaining;
  220. ~~~~~~~~~~~~~~~
  221.  
  222. node_modules/@types/jest/index.d.ts:1010:45 - error TS2314: Generic type 'ObjectContaining<T>' requires 1 type argument(s).
  223.  
  224. 1010 function objectContaining(sample: any): ObjectContaining;
  225. ~~~~~~~~~~~~~~~~
  226.  
  227. node_modules/@types/jest/index.d.ts:1036:15 - error TS2428: All declarations of 'ArrayContaining' must have identical type parameters.
  228.  
  229. 1036 interface ArrayContaining {
  230. ~~~~~~~~~~~~~~~
  231.  
  232. node_modules/@types/jest/index.d.ts:1042:15 - error TS2428: All declarations of 'ObjectContaining' must have identical type parameters.
  233.  
  234. 1042 interface ObjectContaining {
  235. ~~~~~~~~~~~~~~~~
  236.  
  237. node_modules/@types/jest/index.d.ts:1051:14 - error TS2314: Generic type 'SpyAnd<Fun>' requires 1 type argument(s).
  238.  
  239. 1051 and: SpyAnd;
  240. ~~~~~~
  241.  
  242. node_modules/@types/jest/index.d.ts:1052:16 - error TS2314: Generic type 'Calls<Fun>' requires 1 type argument(s).
  243.  
  244. 1052 calls: Calls;
  245. ~~~~~
  246.  
  247. node_modules/@types/jest/index.d.ts:1058:15 - error TS2428: All declarations of 'SpyAnd' must have identical type parameters.
  248.  
  249. 1058 interface SpyAnd {
  250. ~~~~~~
  251.  
  252. node_modules/@types/jest/index.d.ts:1091:15 - error TS2428: All declarations of 'Calls' must have identical type parameters.
  253.  
  254. 1091 interface Calls {
  255. ~~~~~
  256.  
  257. node_modules/@types/jest/index.d.ts:1117:16 - error TS2314: Generic type 'CallInfo<Fun>' requires 1 type argument(s).
  258.  
  259. 1117 all(): CallInfo[];
  260. ~~~~~~~~
  261.  
  262. node_modules/@types/jest/index.d.ts:1122:23 - error TS2314: Generic type 'CallInfo<Fun>' requires 1 type argument(s).
  263.  
  264. 1122 mostRecent(): CallInfo;
  265. ~~~~~~~~
  266.  
  267. node_modules/@types/jest/index.d.ts:1127:18 - error TS2314: Generic type 'CallInfo<Fun>' requires 1 type argument(s).
  268.  
  269. 1127 first(): CallInfo;
  270. ~~~~~~~~
  271.  
  272. node_modules/@types/jest/index.d.ts:1134:15 - error TS2428: All declarations of 'CallInfo' must have identical type parameters.
  273.  
  274. 1134 interface CallInfo {
  275. ~~~~~~~~
  276.  
  277. node_modules/@types/jest/index.d.ts:1170:9 - error TS2687: All declarations of 'message' must have identical modifiers.
  278.  
  279. 1170 message: string | (() => string);
  280. ~~~~~~~
  281.  
  282.  
  283. Found 40 errors.
  284.  
  285. npm ERR! code ELIFECYCLE
  286. npm ERR! errno 2
  287. npm ERR! server@0.0.1 build: `tsc -p tsconfig.build.json`
  288. npm ERR! Exit status 2
  289. npm ERR!
  290. npm ERR! Failed at the server@0.0.1 build script.
  291. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
  292.  
  293. npm ERR! A complete log of this run can be found in:
  294. npm ERR! /home/ubuntu/.npm/_logs/2019-05-23T00_35_21_233Z-debug.log
  295. npm ERR! code ELIFECYCLE
  296. npm ERR! errno 2
  297. npm ERR! server@0.0.1 prestart:prod: `rimraf dist && npm run build`
  298. npm ERR! Exit status 2
  299. npm ERR!
  300. npm ERR! Failed at the server@0.0.1 prestart:prod script.
  301. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement