Files
jack-of-all-rabbits/tsconfig.json
T
2026-06-26 20:36:55 -04:00

19 lines
456 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "src/**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"assets": ["assets"],
"components": ["components/index.ts"],
"const": ["const/index.ts"],
"layouts": ["layouts/index.ts"],
"types": ["types/index.ts"],
"utils": ["utils/index.ts"]
}
}
}