Home / File/ tsconfig.json — ui Source File

tsconfig.json — ui Source File

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

Entity Profile

Source Code

{
  "include": [
    "**/*.ts",
    "**/*.tsx",
    "**/.server/**/*.ts",
    "**/.server/**/*.tsx",
    "**/.client/**/*.ts",
    "**/.client/**/*.tsx"
  ],
  "compilerOptions": {
    "lib": ["DOM", "DOM.Iterable", "ES2022"],
    "isolatedModules": true,
    "esModuleInterop": true,
    "jsx": "react-jsx",
    "module": "ESNext",
    "moduleResolution": "Bundler",
    "resolveJsonModule": true,
    "target": "ES2022",
    "strict": true,
    "allowJs": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "baseUrl": ".",
    "paths": {
      "~/*": ["./app/*"]
    },

    // Vite takes care of building everything, not tsc.
    "noEmit": true
  }
}

Frequently Asked Questions

What does tsconfig.json do?
tsconfig.json is a source file in the ui codebase, written in json.
Where is tsconfig.json in the architecture?
tsconfig.json is located at packages/shadcn/test/fixtures/frameworks/remix/tsconfig.json (directory: packages/shadcn/test/fixtures/frameworks/remix).

Analyze Your Own Codebase

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

Try Supermodel Free