domain-watchdog/docs/tsconfig.json
2025-12-04 16:06:09 +01:00

19 lines
240 B
JSON

{
"extends": "astro/tsconfigs/strictest",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
]
}
}
}