Advertisement
lounes_kmt

Logs TS UNS

Feb 22nd, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.93 KB | None | 0 0
  1. $ yarn tsc js/unik.ts
  2. yarn run v1.22.0
  3. $ tsc js/unik.ts
  4. node_modules/@arkecosystem/utils/dist/is-equal.d.ts:1:8 - error TS1259: Module '"fast-deep-equal"' can only be default-imported using the 'esModuleInterop' flag
  5.  
  6. 1 import isEqual from "fast-deep-equal";
  7.          ~~~~~~~
  8.  
  9.   node_modules/fast-deep-equal/index.d.ts:3:5
  10.     3     export = equal;
  11.           ~~~~~~~~~~~~~~~
  12.     This module is declared with using 'export =', and can only be used with a default import when using the 'esModuleInterop' flag.
  13.  
  14. node_modules/@arkecosystem/utils/dist/merge.d.ts:1:8 - error TS1259: Module '"/node_modules/deepmerge/index"' can only be default-imported using the 'esModuleInterop' flag
  15.  
  16. 1 import merge from "deepmerge";
  17.          ~~~~~
  18.  
  19.   node_modules/deepmerge/index.d.ts:16:1
  20.     16 export = deepmerge;
  21.        ~~~~~~~~~~~~~~~~~~~
  22.     This module is declared with using 'export =', and can only be used with a default import when using the 'esModuleInterop' flag.
  23.  
  24. node_modules/@uns/ark-crypto/dist/interfaces/transactions.d.ts:2:23 - error TS2688: Cannot find type definition file for 'bytebuffer'.
  25.  
  26. 2 /// <reference types="bytebuffer" />
  27.                         ~~~~~~~~~~
  28.  
  29. node_modules/@uns/ark-crypto/dist/interfaces/transactions.d.ts:17:45 - error TS2304: Cannot find name 'ByteBuffer'.
  30.  
  31. 17     serialize(options?: ISerializeOptions): ByteBuffer;
  32.                                                ~~~~~~~~~~
  33.  
  34. node_modules/@uns/ark-crypto/dist/interfaces/transactions.d.ts:18:22 - error TS2304: Cannot find name 'ByteBuffer'.
  35.  
  36. 18     deserialize(buf: ByteBuffer): void;
  37.                         ~~~~~~~~~~
  38.  
  39. node_modules/@uns/ark-crypto/dist/transactions/types/transaction.d.ts:2:23 - error TS2688: Cannot find type definition file for 'bytebuffer'.
  40.  
  41. 2 /// <reference types="bytebuffer" />
  42.                         ~~~~~~~~~~
  43.  
  44. node_modules/@uns/ark-crypto/dist/transactions/types/transaction.d.ts:26:27 - error TS2304: Cannot find name 'ByteBuffer'.
  45.  
  46. 26     abstract serialize(): ByteBuffer;
  47.                              ~~~~~~~~~~
  48.  
  49. node_modules/@uns/ark-crypto/dist/transactions/types/transaction.d.ts:27:31 - error TS2304: Cannot find name 'ByteBuffer'.
  50.  
  51. 27     abstract deserialize(buf: ByteBuffer): void;
  52.                                  ~~~~~~~~~~
  53.  
  54. node_modules/@uns/ark-crypto/dist/validation/index.d.ts:1:8 - error TS1259: Module '"/node_modules/ajv/lib/ajv"' can only be default-imported using the 'esModuleInterop' flag
  55.  
  56. 1 import Ajv from "ajv";
  57.          ~~~
  58.  
  59.   node_modules/ajv/lib/ajv.d.ts:391:1
  60.     391 export = ajv;
  61.         ~~~~~~~~~~~~~
  62.     This module is declared with using 'export =', and can only be used with a default import when using the 'esModuleInterop' flag.
  63.  
  64. node_modules/@uns/crypto/dist/signers/NftMintDemandCertificationSigner.d.ts:1:23 - error TS2688: Cannot find type definition file for 'bytebuffer'.
  65.  
  66. 1 /// <reference types="bytebuffer" />
  67.                         ~~~~~~~~~~
  68.  
  69. node_modules/@uns/crypto/dist/signers/NftMintDemandCertificationSigner.d.ts:5:18 - error TS2304: Cannot find name 'ByteBuffer'.
  70.  
  71. 5     serialize(): ByteBuffer;
  72.                    ~~~~~~~~~~
  73.  
  74. node_modules/@uns/crypto/dist/signers/NftMintDemandSigner.d.ts:1:23 - error TS2688: Cannot find type definition file for 'bytebuffer'.
  75.  
  76. 1 /// <reference types="bytebuffer" />
  77.                         ~~~~~~~~~~
  78.  
  79. node_modules/@uns/crypto/dist/signers/NftMintDemandSigner.d.ts:5:18 - error TS2304: Cannot find name 'ByteBuffer'.
  80.  
  81. 5     serialize(): ByteBuffer;
  82.                    ~~~~~~~~~~
  83.  
  84. node_modules/@uns/crypto/dist/signers/signers.d.ts:2:23 - error TS2688: Cannot find type definition file for 'bytebuffer'.
  85.  
  86. 2 /// <reference types="bytebuffer" />
  87.                         ~~~~~~~~~~
  88.  
  89. node_modules/@uns/crypto/dist/signers/signers.d.ts:28:27 - error TS2304: Cannot find name 'ByteBuffer'.
  90.  
  91. 28     abstract serialize(): ByteBuffer;
  92.                              ~~~~~~~~~~
  93.  
  94.  
  95. Found 15 errors.
  96.  
  97. error Command failed with exit code 2.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement