Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 500 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 500 Bytes

@combeenation/ts-config

Combeenation TypeScript base config.

Usage

  • Install:

    $ npm i --dev @combeenation/ts-config
  • Create new tsconfig.json file or add to extends section of existing config. Example config using the package:

    {
      "extends": "@combeenation/ts-config",
      "compilerOptions": {
        // "outDir" & "srcDir" does not come from the config...
        "outDir": "dist"
    
        // Overwrite further settings as needed...
      }
    }