Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/willclarktech/tsconfig-willclarktech

Default TS config for personal projects
https://github.com/willclarktech/tsconfig-willclarktech

Last synced: 17 days ago
JSON representation

Default TS config for personal projects

Awesome Lists containing this project

README

        

# tsconfig-willclarktech

Default TypeScript configuration for personal projects.

## Installation

Install the package:

```sh
npm install --save-dev https://github.com/willclarktech/tsconfig-willclarktech
```

## Usage

In TS projects extend from the default config in your TypeScript configuration file:

```json
{
"extends": "tsconfig-willclarktech/tsconfig-base.json"
}
```

In React projects extend from the `react` config:

```json
{
"extends": "tsconfig-willclarktech/tsconfig-react.json"
}
```

In library projects extend from the `library` config:

```json
{
"extends": "tsconfig-willclarktech/tsconfig-library.json"
}
```