Repository for solutions to select Advent of Code 2018 problems, written primarily (solely?) in Typescript using the TDD red-green-refactor approach.
Edit and Run
Write your program using src/index.ts as the entry point, and run it.
$ npm run startIndividual problems will be split out into standalone modules.
👮 All the test need to pass in order to make a git push.
How to TDD:
Create a test file next to the file you want to test, using the nomenclature <file-name>.test.ts.
$ npm run tddBased on TypeScript Node App Starter. See its readme.md for installation instructions, list of contributors, etc.