tsconfig.json 257 B

123456789101112
  1. {
  2. "extends": "astro/tsconfigs/strict",
  3. "include": [".astro/types.d.ts", "**/*"],
  4. "exclude": ["dist"],
  5. "compilerOptions": {
  6. "baseUrl": "./src",
  7. "paths": {
  8. "@layouts/*": ["layouts/*"],
  9. "@components/*": ["components/*"]
  10. }
  11. }
  12. }