aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mcp/tsconfig.json
blob: 07b074a3231e0a8af14c869114ae0d5d83e0e64f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": "@karakeep/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"]
  }
}