mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-26 07:18:38 -05:00
* 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
42 lines
1.0 KiB
JSON
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"
|
|
]
|
|
}
|