aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: bdddda869cfe1900c6e07fed3191ba080de6f724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  // Core TypeScript compiler configuration.
  // --  Central to type checking, used by Vite, Jest, and ESLint.
  "exclude": [
    "dist",
    "src/api/"
  ],

  "files": [],
  "references": [
    {
      "path": "./tsconfig.build.json"
    },
    {
      "path": "./tsconfig.node.json"
    }
  ],
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": [
        "./src/*"
      ]
    }
  }
}