@theholocron/tsconfig
v7.19.1
Published
TypeScript base configurations for theholocron projects.
Maintainers
Readme
TypeScript Config
A TypeScript configuration for writing typed JavaScript.
Installation
pnpm add -D @theholocron/tsconfigUsage
In your project tsconfig.json, extend one of the two base configurations:
Next.js
{
"extends": "@theholocron/tsconfig/nextjs"
}Node LTS
Targets the current Node LTS feature set. All theholocron projects use this:
{
"extends": "@theholocron/tsconfig/node-lts"
}React
Targets browser environments for React component libraries and apps. Sets DOM lib, ESNext module with bundler resolution, and react-jsx transform — no manual overrides needed for Vite-based projects:
{
"extends": "@theholocron/tsconfig/react"
}