Lay out the project
Let’s start out with a new directory. We’ll name it proj
for now, but you can change it to whatever you want.
1 2 | mkdir proj cd proj |
To start, we’re going to structure our project in the following way:
1 2 3 | proj/ +- src/ +- built/ |
TypeScript files will start out in your src
folder, run through the TypeScript compiler, and end up in built
.
Let’s scaffold this out:
1 2 | mkdir src mkdir built |
Please login to continue.