Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a-tarasyuk/react-webpack-typescript-babel
A sample setup using React, Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.
https://github.com/a-tarasyuk/react-webpack-typescript-babel
Last synced: 3 months ago
JSON representation
A sample setup using React, Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.
- Host: GitHub
- URL: https://github.com/a-tarasyuk/react-webpack-typescript-babel
- Owner: a-tarasyuk
- Created: 2018-11-01T08:55:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T13:33:48.000Z (5 months ago)
- Last Synced: 2024-06-22T21:46:04.402Z (5 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.28 MB
- Stars: 105
- Watchers: 4
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React-Webpack-TypeScript-Babel
> This is sample repository demonstrates how to use React, Webpack, TypeScript and Babel
## Starting the development server
```shell
npm start
```## Building the `bundle`
```shell
npm run build
```## Type-Checking the repo
```shell
npm run type-check
```And to run in --watch mode:
```shell
npm run type-check:watch
```