Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T09:54:15.000Z (5 months ago)
- Last Synced: 2024-08-01T16:46:38.294Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.06 MB
- Stars: 138
- Watchers: 4
- Forks: 25
- Open Issues: 1
-
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
```