Files
sim/apps/sim/tsconfig.json
Waleed ce3ddb6ba0 improvement(deployed-mcp): added the ability to make the visibility for deployed mcp tools public, updated UX (#2853)
* improvement(deployed-mcp): added the ability to make the visibility for deployed mcp tools public, updated UX

* use reactquery

* migrated chats to use reactquery, upgraded entire deploymodal to use reactquery instead of manual state management

* added hooks for chat chats and updated callers to all use reactquery

* fix

* updated comments

* consolidated utils
2026-01-16 14:18:39 -08:00

42 lines
1.0 KiB
JSON

{
"extends": "@sim/tsconfig/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@/components/*": ["components/*"],
"@/lib/*": ["./lib/*"],
"@/stores": ["./stores"],
"@/stores/*": ["./stores/*"],
"@/hooks/*": ["./hooks/*"],
"@/blocks": ["./blocks"],
"@/blocks/*": ["./blocks/*"],
"@/providers/*": ["./providers/*"],
"@/providers": ["./providers"],
"@/tools": ["./tools"],
"@/tools/*": ["./tools/*"],
"@/serializer": ["./serializer"],
"@/serializer/*": ["./serializer/*"],
"@sim/db": ["../../packages/db"],
"@sim/db/*": ["../../packages/db/*"],
"@/executor": ["./executor"],
"@/executor/*": ["./executor/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"../next-env.d.ts",
"telemetry.config.js",
"trigger.config.ts"
],
"exclude": [
"node_modules",
".next",
"**/*.test.ts",
"**/*.test.tsx",
"vitest.config.ts",
"vitest.setup.ts"
]
}