a4-cli 0.20.2

CLI tool for generating TypeScript SDKs from Arete stream specifications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "//": "Type-checks the golden generated TypeScript SDKs against the local @usearete/sdk build (typescript/core: npm ci && npm run build).",
  "compilerOptions": {
    "target": "ES2022",
    "module": "ESNext",
    "moduleResolution": "Bundler",
    "strict": true,
    "noEmit": true,
    "skipLibCheck": true,
    "types": [],
    "baseUrl": ".",
    "paths": {
      "@usearete/sdk": ["../../../../typescript/core/dist/index.d.ts"],
      "zod": ["../../../../typescript/core/node_modules/zod"]
    }
  },
  "include": ["*/typescript/*.ts", "*/typescript-programs/*.ts", "*/typescript-composition/*.ts"]
}