@kinematic-lab/typescript-config
The @kinematic-lab/typescript-config
contains the default TypeScript configuration for kinematic-labs projects.
Table of contents
Relevant links
See changelogs: here.
See npm: here.
Installation
To use @kinematic-lab/typescript-config
in your project, you must first install it as a dependency. You can do this by running the following command in your terminal:
Using PNPM
$ pnpm i @kinematic-lab/typescript-config
Using NPM
$ npm i @kinematic-lab/typescript-config
Using Yarn
$ yarn add @kinematic-lab/typescript-config
Usage
Once you have installed the package, you can use it by extending it in your tsconfig.json
file. See the examples below:
{
"extends": "@kinematic-lab/typescript-config/core.json"
// other configuration
}