0.0.1 • Published 6 years ago

@misk/typescript v0.0.1

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

Misk Typescript

npm.io This package provides shared compiler options and linting used to provide a common Typescript environment across Misk tab repos.

Getting Started

$ yarn add @misk/typescript

TsConfig Template

Create a tsconfig.json file in the repo root directory with the following:

  {
    "extends": "./node_modules/@misk/typescript/tsconfig.base",
    "compilerOptions": {
        "outDir": "./dist"
    }
  }

TsLint Template

Create a tslint.json file in the repo root directory with the following:

  {
    "extends": "@misk/typescript"
  }

Releasing