This is an Advent of Code template for TypeScript.
git clone https://github.com/AlexMason/AdventOfCode-Template.git ${PROJECT_DIR}
cd ${PROJECT_DIR}
npm install
Use npm start
to run the application, this handles the compilation to normal javascript for typescript.
./inputs/input.txt - This is your main input file.
./inputs/inputtest.txt - This is your test input file, use it to do your debugging
./solutions/Solution1.ts - This is your 1st solution file.
./solutions/Solution2.ts - This is your 2nd solution file.