Mintlify shared ts config
npm install @mintlify/ts-configA TS Config file is used to specify how a TypeScript project should be compiled.
``sh`
npx install-peerdeps --dev @mintlify/ts-config
Alternatively, you can install this package as devDependency and install the peerDependencies separately.
`shyarn
yarn add -D @mintlify/ts-config
Add Configuration File
In the project's tsconfig.json file, extend this configuration:`json
{
"extends": "@mintlify/ts-config",
"compilerOptions": {
...
},
...
}
``