-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtsconfig.typecheck-core.json
More file actions
33 lines (33 loc) · 1.01 KB
/
tsconfig.typecheck-core.json
File metadata and controls
33 lines (33 loc) · 1.01 KB
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
27
28
29
30
31
32
33
{
"extends": "./tsconfig.json",
"compilerOptions": {
"strict": false,
"strictNullChecks": true,
"noImplicitAny": false,
"noEmit": true,
"incremental": false
},
"include": [],
"files": [
"src/app/api/settings/proxy/test/route.ts",
"src/lib/db/apiKeys.ts",
"src/lib/db/cliToolState.ts",
"src/lib/db/encryption.ts",
"src/lib/db/prompts.ts",
"src/lib/db/providers.ts",
"src/lib/db/settings.ts",
"src/lib/db/stateReset.ts",
"src/shared/validation/providerSchema.ts",
"src/shared/validation/schemas.ts",
"open-sse/config/providerModels.ts",
"open-sse/config/providerRegistry.ts",
"open-sse/mcp-server/audit.ts",
"open-sse/mcp-server/server.ts",
"open-sse/mcp-server/tools/advancedTools.ts",
"open-sse/mcp-server/scopeEnforcement.ts",
"open-sse/translator/registry.ts",
"open-sse/handlers/responseSanitizer.ts",
"open-sse/handlers/responseTranslator.ts"
],
"exclude": ["node_modules", ".next", "app.__qa_backup", "vscode-extension"]
}