Error running npx tsc
viktor-ferenczi opened this issue · 1 comments
viktor-ferenczi commented
Briefly describe your issue
Error while running installation step: npx tsc
C:\Dev\MC\Voyager\voyager\env\mineflayer\mineflayer-collectblock>npx tsc
src/BlockVeins.ts:25:32 - error TS2345: Argument of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/mineflayer/node_modules/prismarine-block/index").Block' is not assignable to parameter of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/prismarine-block/index").Block'.
The types returned by 'getProperties()' are incompatible between these types.
Type '{ [key: string]: string | number | boolean; }' is not assignable to type '{ [key: string]: string | number; }'.
'string' index signatures are incompatible.
Type 'string | number | boolean' is not assignable to type 'string | number'.
Type 'boolean' is not assignable to type 'string | number'.
25 if (targets.includes(neighbor)) continue
~~~~~~~~
src/BlockVeins.ts:26:29 - error TS2345: Argument of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/mineflayer/node_modules/prismarine-block/index").Block' is not assignable to parameter of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/prismarine-block/index").Block'.
26 if (open.includes(neighbor)) continue
~~~~~~~~
src/BlockVeins.ts:28:21 - error TS2345: Argument of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/mineflayer/node_modules/prismarine-block/index").Block' is not assignable to parameter of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/prismarine-block/index").Block'.
28 open.push(neighbor)
~~~~~~~~
src/CollectBlock.ts:209:23 - error TS2345: Argument of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/prismarine-block/index").Block' is not assignable to parameter of type 'import("C:/Dev/MC/Voyager/voyager/env/mineflayer/node_modules/mineflayer/node_modules/prismarine-block/index").Block'.
Type 'Block' is missing the following properties from type 'Block': setSignText, getSignText
209 await bot.dig(block);
~~~~~
Found 4 errors in 2 files.
Errors Files
3 src/BlockVeins.ts:25
1 src/CollectBlock.ts:209
Please provide your python, nodejs, Minecraft, and Fabric versions here
Windows 11 64bit Professional
Python 3.10.10
node-v20.10.0-x64
Minecraft Java Edition 1.19.2
Fabric not installed yet
viktor-ferenczi commented
Duplicate of #127