@repo/typescript-config holds shared TypeScript compiler settings for the monorepo, consumed via extends in package and app tsconfig files. It provides base.json (strict mode, ES2022, NodeNext), nextjs.json (extends base for Next.js with bundler resolution), and react-library.json (extends base for React packages with JSX support).
graph TD
tsconfig["@repo/typescript-config"]{
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src"]
}