summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 61fcd4988ffac90a48f9dcf30e7e083a98188f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "extends": "astro/tsconfigs/strict",
  "compilerOptions": {
    "baseUrl": "src",
    "paths": {
      "$components/*": ["./components/*"],
      "$data/*": ["./data/*"],
      "$enums/*": ["./enums/*"],
      "$i18n/*": ["./i18n/*"],
      "$images/*": ["./images/*"],
      "$layouts/*": ["./layouts/*"],
      "$lib/*": ["./lib/*"],
      "$pages/*": ["./pages/*"],
      "$types/*": ["./types/*"]
    },
    "strictNullChecks": true
  }
}