The @kinematic-lab/typescript-config
contains the default TypeScript configuration for kinematic-labs projects.
See changelogs: here.
See npm: here.
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:
$ pnpm i @kinematic-lab/typescript-config
$ npm i @kinematic-lab/typescript-config
$ yarn add @kinematic-lab/typescript-config
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
}