| 12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "commonjs",
- "lib": ["ES2020"],
- "types": ["node"],
- "outDir": "./dist",
- "rootDir": "./",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true
- },
- "include": [
- "src/agency_swarm/cli/utils/generate-agent-from-settings.ts"
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|