@homestuck/tsconfig
v1.7.0
Published
Baseline TypeScript configs used and maintained by Homestuck Inc., et al.
Readme
Baseline TypeScript configurations used and maintained by members of @homestuck.
🚀 Quick Start
1. Install the package:
npm install --save-dev @homestuck/tsconfig
# or
pnpm add -D @homestuck/tsconfig2. Add the most applicable config to your project's Typescript configuration file:
Standard Package:
// tsconfig.json
{
"extends": "@homestuck/tsconfig/base.json"
// Additional configs and overrides can optionally be set here.
}Internal Package:
// tsconfig.json
{
"extends": "@homestuck/tsconfig/internal-package.json"
// Additional configs and overrides can optionally be set here.
}