https://github.com/solodynamo/t.s.s
tsc Starter
https://github.com/solodynamo/t.s.s
Last synced: 2 months ago
JSON representation
tsc Starter
- Host: GitHub
- URL: https://github.com/solodynamo/t.s.s
- Owner: solodynamo
- Created: 2016-10-05T13:51:12.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-07T17:04:46.000Z (over 9 years ago)
- Last Synced: 2025-12-27T17:42:23.018Z (6 months ago)
- Language: TypeScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# TS Starter
Get yourserlf get going with typescript which is one of the hindrance we most often face.
Project Structure:
- ./src - It is where our ts code will reside.
- ./dist - It is where our js code will reside here after getting compiled by tsc.
### Installation
Install the dependencies and devDependencies and start the server.
```sh
$ npm install typescript -g
$ cd T.S.S/src
$ tsc -w
```
-w : It watches for ts code change and automatically compiles to js in dist/
-Write ts code in app.ts and get app.js in dist/ which is as easy it can get.