summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 6f77cf4fdd1a49318d61d3e2cd6d91ff8b066f69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$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/*"]
    }
  }
}