summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: ec8fce08fb5ec99372f2ab49a797b34a11c8a835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "extends": "astro/tsconfigs/base",
  "compilerOptions": {
    "strictNullChecks": true,
    "allowJs": true,
    "baseUrl": ".",
    "paths": {
      "~/*": ["src/*"]
    }
  },
  "include": [".astro/types.d.ts", "**/*"],
  "exclude": ["dist/"]
}