https://github.com/nicksp/webpack-typescript-babel-template
A starter template using Webpack and Babel to build TypeScript code
https://github.com/nicksp/webpack-typescript-babel-template
babel typecheck typescript webpack
Last synced: about 2 months ago
JSON representation
A starter template using Webpack and Babel to build TypeScript code
- Host: GitHub
- URL: https://github.com/nicksp/webpack-typescript-babel-template
- Owner: nicksp
- License: mit
- Created: 2019-11-10T17:57:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:44:48.000Z (over 3 years ago)
- Last Synced: 2026-03-28T22:41:55.130Z (3 months ago)
- Topics: babel, typecheck, typescript, webpack
- Language: TypeScript
- Size: 810 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Webpack-TypeScript-Babel
> A starter template for projects using Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.
## Building the Repo
```sh
npm run build
```
## Building Types
```sh
npm run build:types
```
## Type-checking the Project
```sh
npm run typecheck
```
And to run in `--watch` mode:
```sh
npm run typecheck:watch
```