tsconfig.app.json — vite Source File
Architecture documentation for tsconfig.app.json, a json file in the vite codebase.
Entity Profile
Source Code
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2023",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}
Source
Frequently Asked Questions
What does tsconfig.app.json do?
tsconfig.app.json is a source file in the vite codebase, written in json.
Where is tsconfig.app.json in the architecture?
tsconfig.app.json is located at packages/create-vite/template-solid-ts/tsconfig.app.json (directory: packages/create-vite/template-solid-ts).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free