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-uxpinor
npm install tslint tslint-config-uxpin --save-devThen 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
}
}