/tsconfig-presets

A set of base tsconfig.json files for TypeScript projects

tsconfig-presets

A set of base tsconfig.json files for TypeScript projects.

  1. tsconfig-base.json: A good TSConfig starting point.
  2. tsconfig-esm.json: A TSConfig for use with ESM projects.

Installation

npm install --save-dev https://github.com/ciaran1344/tsconfig-presets

Usage

In your tsconfig.json:

{
  "extends": "@ciaran1344/tsconfig-presets/tsconfig-esm.json",
  // Rest of your tsconfig options here
  "include": ["src"]
}