Configuration Filesintermediate

tsconfig-style Compiler Config JSON Example

A compiler-oriented config shape with nested options, arrays, and include patterns.

Real-world use case: Use this for build docs, config tutorials, and project bootstrapping examples.
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "strict": true,
6 "baseUrl": "."
7 },
8 "include": [
9 "src/**/*.ts",
10 "src/**/*.tsx"
11 ],
12 "exclude": [
13 "node_modules",

Where this shape shows up in production

Build tools
TypeScript projects
Starter templates

Related examples