1.0.1 • Published 2 years ago

@bozerkins/tsconfig-base v1.0.1

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

TSConfig base

Hosts TSConfig base that I personally use for my TS projects. The base has very strict rules, that drive strictly typed, good quality code.

How to use

Install:

# npm installation
npm install --save-dev @bozerkins/tsconfig-base

# yarn installation
yarn add --dev @bozerkins/tsconfig-base

Add to your tsconfig.json:

"extends": "@bozerkins/tsconfig-base/tsconfig.json"

Example tsconfig.json

{
  "extends": "@bozerkins/tsconfig-base/tsconfig.json",
  "compilerOptions": {
    "baseUrl": "./",
    "module": "ES2022",
    "moduleResolution": "Node",
    "target": "ES2022"
  }
}