1.0.0 • Published 4 years ago

@samuelmeuli/tsconfig v1.0.0

Weekly downloads
81
License
MIT
Repository
github
Last release
4 years ago

tsconfig

This is the shared TypeScript configuration for my projects.

Install

Install the package using NPM:

yarn add --dev @samuelmeuli/tsconfig

Usage

Create the tsconfig.json file in your project root:

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

The default configuration can be overridden or extended:

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