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

https://github.com/tommy-mitchell/tsconfig

My personal TypeScript config.
https://github.com/tommy-mitchell/tsconfig

Last synced: 2 months ago
JSON representation

My personal TypeScript config.

Awesome Lists containing this project

README

        

# @tommy-mitchell/tsconfig

Personal TypeScript config.

## Install

```sh
npm install --save-dev @tommy-mitchell/tsconfig
```

Other Package Managers

```sh
yarn add --dev @tommy-mitchell/tsconfig
```

## Usage

```json5
{
"extends": "@tommy-mitchell/tsconfig",
"compilerOptions": {
"outDir": "dist",
},
}
```

If using with a bundler, set the following options to prevent type resolution issues:

```json5
{
"compilerOptions": {
"declaration": false,
"noEmit": false,
},
}
```