Skip to content

Logicer16/tsconfig

Repository files navigation

Logicer's Typescript Base Configuration

npm (scoped) GitHub commit activity (branch)

Logicer's Typescript configuration for use in other projects. Designed to be built upon for the project's specific needs. Includes the type-coverage plugin.

Install

npm install --save-dev typescript ts-plugin-type-coverage @logicer/tsconfig

Usage

In the project's tsconfig.json:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": "@logicer/prettier-config",
  ... // Your modifications
  "compilerOptions": {
		"outDir": "<out-directory>"
	},
  "include": [
    "<source-directory>"
  ]
}