1.0.1 • Published 2 years ago

@nolanrigo/typescript-config v1.0.1

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

@nolanrigo/typescript-config

Installation

$ npm i -D @nolanrigo/typescript-config
OR
$ yarn add --dev @nolanrigo/typescript-config

tsconfig.json

{
  "extends": "@nolanrigo/typescript-config",
  "include": ["./src/**/*"],
  "compilerOptions": {
    "outDir": "./dist",
    "target": "ES2020",
    "lib": ["ES2020"],
    "module": "commonjs",
    "composite": true,
    "incremental": true,
    "allowJs": false,
    "checkJs": false,
    "declaration": true,
    "declarationMap": true,
    "downlevelIteration": true,
    "importHelpers": true,
    "isolatedModules": true,
    "experimentalDecorators": true
  }
}