1.0.0 • Published 6 years ago

@seanmcgary/tsconfig v1.0.0

Weekly downloads
242
License
MIT
Repository
-
Last release
6 years ago

tsconfig

A common tsconfig file for sharing between projects

Install

yarn add @seanmcgary/tsconfig

Usage

The following is all you need to add to your project to extend the base config:

tsconfig.json

{
  "extends": "./node_modules/@seanmcgary/tsconfig/tsconfig-base.json",
  "compilerOptions": {
    "rootDir": ".",
    "outDir": "dist",
    "baseUrl": ".",
    "types": [ ]
  },
  "include": [
    "index.ts"
  ]
}