11 lines
312 B
JSON
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
|
|
}
|
|
}
|