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

https://github.com/devsht/tsconfig

Reusable TS config
https://github.com/devsht/tsconfig

config react reusability reusable tsconfig typescript

Last synced: 3 months ago
JSON representation

Reusable TS config

Awesome Lists containing this project

README

          

# @devsht/tsconfig

Reusable TS config

## Installation

```bash
npm i -D @devsht/tsconfig
```

or

```
yarn add --dev @devsht/tsconfig
```

## Usage

Create a **tsconfig.json** and add this package to the extends field.

```
{
"extends": "@devsht/tsconfig",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src"]
}
```