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

https://github.com/sindresorhus/tsconfig

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

config npm-package tsconfig typescript

Last synced: about 1 year ago
JSON representation

Shared TypeScript config for my projects

Awesome Lists containing this project

README

          

# tsconfig

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

This config makes TypeScript not do any polyfilling, so only use syntax and features available in the JavaScript environments you target.

## Install

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

*This config requires TypeScript 5.5 or later.*

## Usage

`tsconfig.json`

```json
{
"extends": "@sindresorhus/tsconfig"
}
```