Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wavesoft/eilos-preset-typescript

React + Typescript Preset for eilos
https://github.com/wavesoft/eilos-preset-typescript

Last synced: about 2 months ago
JSON representation

React + Typescript Preset for eilos

Awesome Lists containing this project

README

        

# είλως - Typescript Preset

This preset can be used for a typical, modern Typescript project with React.

## Components

* Webpack (4.43)
* Typescript (4.2)
* React (16.9)
* Jest (26.0)
* SASS (1.26)

### Optimisations

In order to speed-up typescript checking, this preset is using:

* `fork-ts-checker-webpack-plugin` for running type-checking in another thread

## Supported Lifecycle Steps

### `build`

```js
{
...
"scripts": {
"build": "eilos build"
}
...
}
```

Builds your project using [Webpack](https://webpack.js.org/guides/typescript) and the typescript engine.

### `dev`

```js
{
...
"scripts": {
"dev": "eilos dev"
}
...
}
```

Starts an webpack-dev-server for testing your project locally.

### `test`

```js
{
...
"scripts": {
"test": "eilos test"
}
...
}
```

Run tests using `jest`