1.0.0 • Published 4 years ago

@pilchard/tsconfig v1.0.0

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

tsconfig

Shared TypeScript config.

Install

$ pnpm add -D @pilchard/tsconfig

Usage

tsconfig.json

{
  "extends": "@pilchard/tsconfig/tsconfig.json",
  "compilerOptions": {
    "outDir": "dist"
  }
}

When targeting higher versions of Node.js, check the relevant ECMAScript version and add it as target:

{
  "extends": "@pilchard/tsconfig/tsconfig.json",
  "compilerOptions": {
    "outDir": "dist",
    "target": "ES2022"
  }
}