System of a Clown
A Learning TypeScript > The Type System 🥗 appetizer project. You'll practice adding in TypeScript type annotations to JavaScript code to find bugs.
🎈 Help me, please!
I planned an elaborate clown-themed surprise party for my best friend. The whole event was planned using a few files of TypeScript code I'd written.
My friend somehow caught wind of the party and enlisted the clowns' help to vandalize the program. Not only did the clowns remove or make incorrect my TypeScript type annotations, they introduced subtle bugs by subtly changing some of the values.
Could you please add correct type annotations in my files and fix any bugs detected by TypeScript? You're my surprise clown celebration's last hope! 🤡
Setup​
If you haven't yet, set up the github.com/LearningTypeScript/projects repository locally.
git clone https://github.com/LearningTypeScript/projects learning-typescript-projects
cd learning-typescript-projects
npm i
Change your terminal directory to this project's:
cd projects/the-type-system/system-of-a-clown
Start the TypeScript compiler in watch mode:
tsc --watch
Steps​
Notes​
- Don't import code from one step into another.