https://github.com/a-tarasyuk/webpack-typescript-babel
A sample setup using Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.
https://github.com/a-tarasyuk/webpack-typescript-babel
Last synced: about 1 month ago
JSON representation
A sample setup using Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.
- Host: GitHub
- URL: https://github.com/a-tarasyuk/webpack-typescript-babel
- Owner: a-tarasyuk
- Created: 2018-11-01T08:15:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-30T13:45:51.000Z (about 1 year ago)
- Last Synced: 2025-10-14T03:24:43.173Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 1.13 MB
- Stars: 138
- Watchers: 2
- Forks: 25
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack-TypeScript-Babel
> This is sample repository demonstrates how to use Webpack, TypeScript and Babel
## Building the repo
```shell
npm run build
```
## Building only types
```shell
npm run build:types
```
## Type-Checking the repo
```shell
npm run type-check
```
And to run in --watch mode:
```shell
npm run type-check:watch
```