| 123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "lib": ["ES2022", "ESNext"],
- "outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "resolveJsonModule": true,
- "allowImportingTsExtensions": false,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "paths": {
- "@openagents-control/compatibility-layer": ["../compatibility-layer/dist/index.d.ts"]
- }
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules", "dist", "**/*.test.ts"]
- }
|