mirror of
https://github.com/benjitaylor/agentation.git
synced 2026-09-14 20:06:45 +08:00
f92103e386
- Move server code (MCP, HTTP, SQLite) to new `mcp/` workspace package - Remove server dependencies from main agentation package (now frontend-only) - Rename `_package-export/` directory to `package/` - Add `pnpm mcp` command to run MCP server from root - Update all workspace references and build configs Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
673 B
JSON
26 lines
673 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [{ "name": "next" }],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@benji/feedback-tool": ["../src/index.ts"],
|
|
"@benji/feedback-tool/*": ["../src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|