https://github.com/charleewa/typescript-study-setup
Quick start learning typescript, base on ts-node and ts-node-dev.
https://github.com/charleewa/typescript-study-setup
learning-typescript ts-node ts-node-dev typescript
Last synced: about 2 months ago
JSON representation
Quick start learning typescript, base on ts-node and ts-node-dev.
- Host: GitHub
- URL: https://github.com/charleewa/typescript-study-setup
- Owner: CharleeWa
- License: mit
- Created: 2022-07-05T01:59:12.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-21T02:51:23.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T21:14:44.086Z (about 2 months ago)
- Topics: learning-typescript, ts-node, ts-node-dev, typescript
- Language: TypeScript
- Homepage:
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TypeScript Study Setup
=================Quick start learning typescript, base on `ts-node` and `ts-node-dev`.
Quickstart
----------- Get the project code
```bash
git clone https://github.com/CharleeWa/typescript-study-setup.git
```- Installation dependencies
```bash
cd typescript-study-setup# with npm
npm install```
- run
```bash
npm run tnd
```**notes.**
The default startup file is index.ts, if yours is not, don't forget to change the command line script.
```
open the package.json"scripts": {
"tnd": "ts-node-dev --respawn --transpile-only yours"
}
```