tsconfig.json — vite Source File
Architecture documentation for tsconfig.json, a json file in the vite codebase.
Entity Profile
Source Code
{
"include": ["**/vite*config*", "**/*.ts"],
"exclude": ["**/dist/**", "./legacy/**", "./resolve-tsconfig-paths/**"],
"compilerOptions": {
"checkJs": true,
"target": "ES2023",
"module": "Preserve",
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "bundler",
"erasableSyntaxOnly": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"jsx": "preserve",
"types": ["vite/client", "node"],
"paths": {
"~utils": ["./test-utils.ts"]
}
}
}
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 (directory: playground).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free