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

https://github.com/progfay/tsconfig

Base tsconfig.json for @progfay's personal use
https://github.com/progfay/tsconfig

tsconfig

Last synced: 13 days ago
JSON representation

Base tsconfig.json for @progfay's personal use

Awesome Lists containing this project

README

        

# @progfay/tsconfig

## Installation

```sh
npm install --save-dev @tsconfig/node16
```

## Setup

```json
{
"extends": "@progfay/tsconfig/tsconfig.json",

/* Optional */
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./lib"
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
}
```