https://github.com/nicksp/typescript-babel-template
A starter template using Babel CLI to build TypeScript code
https://github.com/nicksp/typescript-babel-template
babel-cli typecheck typescript
Last synced: 21 days ago
JSON representation
A starter template using Babel CLI to build TypeScript code
- Host: GitHub
- URL: https://github.com/nicksp/typescript-babel-template
- Owner: nicksp
- License: mit
- Created: 2019-11-10T13:56:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:45:55.000Z (over 3 years ago)
- Last Synced: 2025-01-07T20:21:59.521Z (over 1 year ago)
- Topics: babel-cli, typecheck, typescript
- Language: JavaScript
- Homepage:
- Size: 356 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeScript-Babel
> A starter template for projects using Babel CLI to build TypeScript code, and using TypeScript for type-checking.
## Building the Repo
```sh
npm run build
```
## Linting the Project
```sh
npm run lint
```
## Type-checking the Project
```sh
npm run typecheck
```
And to run in `--watch` mode:
```sh
npm run typecheck:watch
```