Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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