Strict config for modern TypeScript runtimes. Designed around node’s type stripping and tuned for noEmit checks.
npm install --save-dev @standard-config/tsconfigpnpm add --save-dev @standard-config/tsconfigCreate your tsconfig.json:
{
"extends": "@standard-config/tsconfig",
"include": [
"**/*"
],
"exclude": [
"node_modules"
]
}For projects that require a compilation step, use @standard-config/tsconfig/bundler instead. Being slightly more permissive, it’s the recommended base config for Next.js, Vite-based projects, and other React apps.
{
"extends": "@standard-config/tsconfig/bundler"
}MIT © Dom Porada