summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/tsconfig.build.json
blob: 2421951bde57f500940d1cf07916c181bbbd00f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "extends": "./tsconfig.json",
  "include": ["dist/src"],
  "exclude": [],
  "compilerOptions": {
    "rootDir": "./dist/src",
    "paths": {
      "@opencode-ai/sdk/*": ["dist/src/*"],
      "@opencode-ai/sdk": ["dist/src/index.ts"]
    },
    "noEmit": false,
    "declaration": true,
    "declarationMap": true,
    "outDir": "dist",
    "pretty": true,
    "sourceMap": true
  }
}