- Typescript
- Typescript-definitions ( *.d.ts )
- Typescript Linting (tslint)
- Create source-maps from the JS back to the original TS
It uses nodejs and gulp to automatically process any typescript files (Created in the src\ts\
folder) and convert them to JavaScript (in the src\js\
folder).
The Visual Studio Code task has been wired up to perform the default Gulp task, which does the following (just press Control-Shift+B):
- Lint (check the basic coding style)
- Compile
- Update the definition references
- Watch for future TS changes.
<root>
│─── .settings VS Code tasks are defined here
│─── src
│ │─── js files are automatically generated in here
│ └─── ts this is where the source typescript files are created
└─── typings stuff below here is to support the .d.ts creation
(files here are for the management of node, gulp, tsd, tslint, etc.)