Files
morten-olsen.github.io/tsconfig.json
Morten Olsen 06564dff21 rewrite
2025-12-02 23:05:56 +01:00

20 lines
270 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"paths": {
"~/*": [
"./src/*"
]
}
}
}