1.0.1 • Published 4 years ago

@andersdjohnson/tsconfig v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

@andersdjohnson/tsconfig

Shared TypeScript config for my projects.

Install

$ npm add -D @andersdjohnson/tsconfig

copy

Use

In your tsconfig.json:

{
  "extends": "@andersdjohnson/tsconfig",
  "include": ["src"],
  "compilerOptions": {
    "outDir": "dist",
    "lib": ["dom", "esnext"]
  }
}

You must override any path-based compiler options (outDir, outFile, rootDir, include, files, etc.) as they are resolved from the config in which they're defined (see https://github.com/microsoft/TypeScript/issues/29172#issuecomment-450966221).