Skip to content

samuelmeuli/tsconfig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
  }
}