Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wavesoft/eilos-preset-typescript
- Owner: wavesoft
- Created: 2020-06-16T13:19:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T00:43:12.000Z (almost 2 years ago)
- Last Synced: 2023-03-13T20:41:03.367Z (almost 2 years ago)
- Language: TypeScript
- Size: 2.28 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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`