aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/tsconfig.json
blob: bf3444040b7325bdd191c7e0a298e4b3a5191028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": "@hoarder/tsconfig/node.json",
  "include": ["src", "vite.config.mts"],
  "exclude": ["node_modules", "dist"],
  "compilerOptions": {
    "baseUrl": ".",
    "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
    "strictNullChecks": true,
    "paths": {
      "@/*": ["./src/*"]
    },
    "types": ["vite/client"]
  }
}