@friends-of-js/typescript-configs

1.0.5 • Public • Published

@friends-of-js/typescript-configs

license

Set of sharable typescript configs.

Install

yarn add --dev @friends-of-js/typescript-configs
# or
npm install --save-dev @friends-of-js/typescript-configs

Table of Contents

There are 4 types of configs:

  1. strict-latest
  2. strict
  3. standard-latest
  4. standard

Strict-latest and standard-latest configs are constantly updated, including minor and patch releases. Strict and standard configs updated only on major release.

Strict configs include all typescript checks, in contrast to the standards configs, which almost does not include any checks.

Usage

Select the appropriate configuration type:

// strict-latest
// tsconfig.json
{
  "extends": "./node_modules/@friends-of-js/typescript-configs/strict-latest"
}
// strict
// tsconfig.json
{
  "extends": "./node_modules/@friends-of-js/typescript-configs/strict"
}
// standard-latest
// tsconfig.json
{
  "extends": "./node_modules/@friends-of-js/typescript-configs/standard-latest"
}
// standard
// tsconfig.json
{
  "extends": "./node_modules/@friends-of-js/typescript-configs/standard"
}

License

@friends-of-js/typescript-configs © Dmitriy Romanov, released under the MIT License.

Package Sidebar

Install

npm i @friends-of-js/typescript-configs

Weekly Downloads

6

Version

1.0.5

License

MIT

Unpacked Size

6.3 kB

Total Files

7

Last publish

Collaborators

  • noldor