1.1.0 • Published 1 year ago

@axah/tsconfig v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

@axah/tsconfig

Shared TypeScript config for @axah projects

Install

$ pnpm add --save-dev @axah/tsconfig

Usage

tsconfig.json

{
  "extends": "@axah/tsconfig/tsconfig.json",
  "compilerOptions": {
    "outDir": "lib",
    "rootDir": "."
  }
}

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

{
  "extends": "@axah/tsconfig/tsconfig.json",
  "compilerOptions": {
    "outDir": "lib",
    "target": "ES2021"
  }
}