A template for Dota 2 Custom Games built with modern technologies. It includes
- TypeScript for Panorama
- TypeScript for VScripts
- Simple commands to build and launch your custom game
- Continuous Integration support
- Clone this repository or, if you're planning to have a repository for your custom game on GitHub, create a new repository from this template and clone it instead.
- Open the directory of your custom game and change
name
field inpackage.json
file to the name of your addon name. - Open terminal in that directory and run
npm install
to install dependencies. You also should runnpm update
once in a while to get tool updates.
After that you can press Ctrl+Shift+B
in VSCode or run npm run dev
command in terminal to compile your code and watch for changes.
This template includes a GitHub Actions workflow that builds your custom game on every commit and fails when there are type errors.