diff options
Diffstat (limited to 'apps/mcp/tsconfig.json')
| -rw-r--r-- | apps/mcp/tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/mcp/tsconfig.json b/apps/mcp/tsconfig.json new file mode 100644 index 00000000..07b074a3 --- /dev/null +++ b/apps/mcp/tsconfig.json @@ -0,0 +1,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"] + } +} |
