Files
domain-watchdog/docs/tsconfig.json

19 lines
240 B
JSON
Raw Normal View History

2025-11-12 22:29:35 +01:00
{
2025-12-04 16:06:09 +01:00
"extends": "astro/tsconfigs/strictest",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
]
}
}
2025-11-12 22:29:35 +01:00
}