README
Shared TypeScript and TSLint configurations for sixfold.
Usage
Install package with
yarn add --dev @sixfold/ts-config
TypeScript
In tsconfig.json
file extend from generic settings:
{
"extends": "@sixfold/ts-config/tsconfig-service.json"
}
When building for the browser, use tsconfig-browser-compat.json
instead.
TSLint
Add tslint.json
file to your project root containing the following:
{
"extends": "@sixfold/ts-config"
}
How to publish
bump version:
npm run release
publish:
npm run publish-release