Files
frontpage/tsconfig.json
2026-02-24 23:13:12 +01:00

11 lines
312 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true, // add if using `base` template
"allowJs": true, // required, and included with all Astro templates
"allowSyntheticDefaultImports": true
}
}