Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/samuelmeuli/tsconfig

⚙️ My TypeScript configuration
https://github.com/samuelmeuli/tsconfig

tsconfig typescript typescript-configuration

Last synced: 19 days ago
JSON representation

⚙️ My TypeScript configuration

Awesome Lists containing this project

README

        

# tsconfig

This is the shared TypeScript configuration for my projects.

## Install

Install the package using NPM:

```sh
yarn add --dev @samuelmeuli/tsconfig
```

## Usage

Create the `tsconfig.json` file in your project root:

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

The default configuration can be overridden or extended:

```json
{
"extends": "@samuelmeuli/tsconfig",
"compilerOptions": {
"module": "ES6"
}
}
```