tsconfig.json 680 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "compilerOptions": {
  3. "target": "es2021",
  4. "module": "commonjs",
  5. "outDir": "./dist",
  6. "strict": true,
  7. "esModuleInterop": true,
  8. "skipLibCheck": true,
  9. "moduleResolution": "node",
  10. "resolveJsonModule": true,
  11. "allowSyntheticDefaultImports": true,
  12. "baseUrl": "./",
  13. "paths": {
  14. "@grpc/grpc-js": [
  15. "../node_modules/@grpc/grpc-js"
  16. ],
  17. "@generated/*": [
  18. "../src/generated/*"
  19. ],
  20. "@cline-grpc/*": [
  21. "../src/generated/grpc-js/cline/*"
  22. ],
  23. "@harness/*": [
  24. "harness/*"
  25. ],
  26. "@adapters/*": [
  27. "adapters/*"
  28. ]
  29. }
  30. },
  31. "include": [
  32. "**/*.ts",
  33. "../src/generated/grpc-js/**/*.ts"
  34. ],
  35. "exclude": [
  36. "node_modules",
  37. "dist"
  38. ]
  39. }