tsconfig.json — vite Source File
Architecture documentation for tsconfig.json, a json file in the vite codebase.
Entity Profile
Source Code
// prettier-ignore
{
"include": ["./"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"moduleResolution": "bundler",
"strict": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
/* tsconfig.json should support comments and trailing comma */
"useDefineForClassFields": false,
}
}
Source
Frequently Asked Questions
What does tsconfig.json do?
tsconfig.json is a source file in the vite codebase, written in json.
Where is tsconfig.json in the architecture?
tsconfig.json is located at playground/tsconfig-json/nested/tsconfig.json (directory: playground/tsconfig-json/nested).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free