JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12
  • Score
    100M100P100Q64687F
  • License MIT

UXPin TypeScript Style Guide

Package Exports

  • tslint-config-uxpin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tslint-config-uxpin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

tslint-config-uxpin

UXPin recommended TSLint configuration.

Installation

Install TSLint and tslint-config-uxpin:

yarn add --dev tslint tslint-config-uxpin

or

npm install tslint tslint-config-uxpin --save-dev

Then create a tslint.json file in the root directory of your package, with the following contents:

{
  "extends": "tslint-config-uxpin"
}

Customization

In some cases, default configuration of the tslint-config-uxpin may not fit specifics of your projects. In most cases it's unrecommended but still possible to override the default configuration:

{
  "extends": "tslint-config-uxpin",
  "rules": {
    "no-default-export": false,
    "match-default-export-name": true
  }
}