Skip to content

Commit a79acfa

Browse files
fix(core): Optimize collection variants N+1 and persist catalog filters
1 parent 3be449c commit a79acfa

2 files changed

Lines changed: 51 additions & 0 deletions

File tree

.gemini/settings.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"mcpServers": {
3+
"fetch": {
4+
"command": "https://raw.githubusercontent.com/modelcontextprotocol/servers/main/src/fetch/index.ts",
5+
"args": []
6+
},
7+
"sqlite": {
8+
"command": "https://raw.githubusercontent.com/modelcontextprotocol/servers/main/src/sqlite/index.ts",
9+
"args": []
10+
},
11+
"elasticsearch": {
12+
"command": "https://raw.githubusercontent.com/modelcontextprotocol/servers/main/src/elasticsearch/index.ts",
13+
"args": []
14+
},
15+
"puppeteer": {
16+
"command": "npx",
17+
"args": [
18+
"-y",
19+
"@modelcontextprotocol/server-puppeteer"
20+
]
21+
},
22+
"docker": {
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@modelcontextprotocol/server-docker"
27+
]
28+
}
29+
}
30+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": "../../tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "./package",
5+
"noEmit": false,
6+
"target": "es2017",
7+
"lib": [
8+
"es2017",
9+
"esnext.asynciterable"
10+
],
11+
"strict": true,
12+
"strictPropertyInitialization": false,
13+
"esModuleInterop": true,
14+
"emitDecoratorMetadata": true,
15+
"experimentalDecorators": true,
16+
"resolveJsonModule": true,
17+
"skipLibCheck": true
18+
},
19+
"include": ["./src/**/*.ts"],
20+
"exclude": ["node_modules"]
21+
}

0 commit comments

Comments
 (0)