@sixfold/ts-config

Base for TypeScript project configuration

Usage no npm install needed!

<script type="module">
  import sixfoldTsConfig from 'https://cdn.skypack.dev/@sixfold/ts-config';
</script>

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