| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "compilerOptions": {
- "target": "es2021",
- "module": "commonjs",
- "outDir": "./dist",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "allowSyntheticDefaultImports": true,
- "baseUrl": "./",
- "paths": {
- "@grpc/grpc-js": [
- "../node_modules/@grpc/grpc-js"
- ],
- "@generated/*": [
- "../src/generated/*"
- ],
- "@cline-grpc/*": [
- "../src/generated/grpc-js/cline/*"
- ],
- "@harness/*": [
- "harness/*"
- ],
- "@adapters/*": [
- "adapters/*"
- ]
- }
- },
- "include": [
- "**/*.ts",
- "../src/generated/grpc-js/**/*.ts"
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|