Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sanv92/tsconfig

Shared TypeScript config for projects
https://github.com/sanv92/tsconfig

Last synced: about 2 months ago
JSON representation

Shared TypeScript config for projects

Awesome Lists containing this project

README

        

# tsconfig

> Shared [TypeScript config](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for my projects

## Install

```
npm install --save-dev @sanv/tsconfig
yarn add --dev @sanv/tsconfig
```

## Usage

`tsconfig.json`

```json
{
"extends": "@sanv/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "es2018",
"lib": [
"es2018"
]
}
}
```