Typescript on Atom Editor
Feb 24, 2017 · 2 min read
Let´s follow a little tutorial from typescript:
Let´s add:

Create the tsconfig.json

we have created the file tsconfig.json

and we will write some typescript code:

when we save the file, a new javascript file is created, because it compile the the typescript.

More test, with the compiled result:

Let see also enum and any:

Functions and Types

functions with return type, and a void return type

ok… I will stop the post at this point
Next steps:
- Interfaces
- Classes
In Typescript
