{ "$schema": "https://json.schemastore.org/tsconfig.json", "extends": "astro/tsconfigs/strict", "include": [".astro/types.d.ts", "**/*"], "exclude": ["dist"], "compilerOptions": { "strictNullChecks": true, "lib": ["deno.window", "dom.asynciterable"], "baseUrl": ".", "paths": { "@components/*": ["src/components/*"], "@layouts/*": ["src/layouts/*"], "@lib/*": ["src/lib/*"], "@utils/*": ["src/utils/*"], "@fixtures/*": ["tests/fixtures/*"] } } }