Home / File/ tsconfig.json — astro Source File

tsconfig.json — astro Source File

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

Entity Profile

Source Code

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@components/*": [
        "src/components/*"
      ],
      "@styles/*": [
        "src/styles/*",
        "src/more-styles/*"
      ],
      "@short/*": [
        "src/components/*.astro",
        "src/components/*/index.astro"
      ],
      // this can really trip up namespaced packages
      "@*": [
        "src/*"
      ]
    }
  },
  "include": [
    ".astro/types.d.ts",
    "**/*"
  ],
  "exclude": [
    "dist"
  ]
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free