Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/llm-as-judge-skills/tsconfig.json
1{2"compilerOptions": {3"target": "ES2022",4"module": "ESNext",5"moduleResolution": "bundler",6"lib": ["ES2022"],7"outDir": "./dist",8"rootDir": "./src",9"strict": true,10"esModuleInterop": true,11"skipLibCheck": true,12"forceConsistentCasingInFileNames": true,13"declaration": true,14"declarationMap": true,15"sourceMap": true,16"resolveJsonModule": true,17"isolatedModules": true,18"noUnusedLocals": true,19"noUnusedParameters": true,20"noImplicitReturns": true,21"noFallthroughCasesInSwitch": true22},23"include": ["src/**/*"],24"exclude": ["node_modules", "dist", "**/*.test.ts"]25}2627