{
  "compilerOptions": {
    "target": "ES2020",
    "module": "ESNext",
    "moduleResolution": "bundler",
    "lib": ["ES2020", "DOM"],
    "strict": true,
    // No rootDir/outDir here — tsup owns the build output.
    // This tsconfig is used exclusively for IDE support and `tsc --noEmit`.
    // Omitting rootDir lets TypeScript infer a common root that covers both
    // sdk-v2/src and the imported api-v2/src/types files.
    "skipLibCheck": true,
    "esModuleInterop": true,
    "noEmit": true,
    // Suppress TS6 deprecation warnings that surface when tsup traverses
    // node_modules tsconfigs from sibling workspaces (e.g. api-v2).
    "ignoreDeprecations": "6.0"
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules", "dist"]
}
