tsconfig.json — react Source File
Architecture documentation for tsconfig.json, a json file in the react codebase.
Entity Profile
Source Code
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"module": "Node16",
"moduleResolution": "Node16",
"rootDir": "../",
"noEmit": true,
"jsx": "react-jsxdev",
"lib": ["ES2022"],
// weaken strictness from preset
"importsNotUsedAsValues": "remove",
"noUncheckedIndexedAccess": false,
"noUnusedParameters": false,
"useUnknownInCatchVariables": false,
"target": "ES2022",
// ideally turn off only during dev, or on a per-file basis
"noUnusedLocals": false,
},
"exclude": ["node_modules"],
"include": ["src/**/*.ts"],
}
Source
Frequently Asked Questions
What does tsconfig.json do?
tsconfig.json is a source file in the react codebase, written in json.
Where is tsconfig.json in the architecture?
tsconfig.json is located at compiler/packages/react-mcp-server/tsconfig.json (directory: compiler/packages/react-mcp-server).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free