Home / File/ tsconfig.json — vite Source File

tsconfig.json — vite Source File

Architecture documentation for tsconfig.json, a json file in the vite codebase.

Entity Profile

Source Code

{
  "include": ["src"],
  "exclude": ["**/*.spec.ts"],
  "compilerOptions": {
    "outDir": "dist",
    "target": "ES2023",
    "module": "Preserve",
    "moduleResolution": "bundler",
    "isolatedDeclarations": true,
    "declaration": true,
    "strict": true,
    "sourceMap": true,
    "noUnusedLocals": true,
    "esModuleInterop": true,
    "paths": {
      "vite": ["../vite/src/node/index.js"]
    }
  }
}

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 packages/plugin-legacy/tsconfig.json (directory: packages/plugin-legacy).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free