tsconfig.json — react Source File
Architecture documentation for tsconfig.json, a json file in the react codebase.
Entity Profile
Source Code
{
"compilerOptions": {
"target": "ES2015",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"types": [
"react/experimental"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"../../../**"
]
}
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/apps/playground/tsconfig.json (directory: compiler/apps/playground).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free