@medly/typescript-config
v1.1.1
Published
Basic typescript config
Downloads
1,391
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
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"]
}