Skip to content

TypeScript Config

This file defines the TypeScript configuration for the Astro project.

We extend Astro’s strict default settings for type checking.

{
"extends": "astro/tsconfigs/strict",

We include all source files and Astro’s generated types.

"include": [".astro/types.d.ts", "**/*"],

The build output directory is excluded from type checking.

"exclude": ["dist"]
}