@medly/typescript-config

Basic typescript config

Usage no npm install needed!

<script type="module">
  import medlyTypescriptConfig from 'https://cdn.skypack.dev/@medly/typescript-config';
</script>

README

Typescript Config

What is tsconfig.json ?

The tsconfig.json file specifies the root files and the compiler options required to compile the project.

About

Medly recommended rules to better compile your TypeScript project.

Shared typeScript config

Schema

Install

yarn add -D @medly/typescript-config

Usage

Add below code in tsconfig.json file.

{
 "extends": "@medly/typescript-config",
 "include": ["src", "types"],
 "exclude": ["node_modules", "dist", "coverage"]
}