Last updated
Last updated
This page outlines any common issues that you'll run into while setting up the TypeScript starter, as well as how to fix them.
If you're getting the following error:
Make sure you have installed on your private server, and you've set a password on the account in your private server as well.
Game
, Memory
)Make sure you declare any extensions to the type interfaces as an . You can either:
put them inside a *.d.ts
file, or
in an existing .ts
file (with at least one import
or export
), you can use declare global { interface CreepMemory { ... } }
to accomplish the same effect.
For more info: