Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

A sample setup using React, Webpack and Babel to build TypeScript code, and using TypeScript for type-checking.

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
```