@iqai/adk-cli
Version:
CLI tool for creating, running, and testing ADK-TS agents
16 lines • 507 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TsConfigSchema = void 0;
const zod_1 = require("zod");
/**
* Zod schema for validating tsconfig.json structure
*/
exports.TsConfigSchema = zod_1.z.object({
compilerOptions: zod_1.z
.object({
baseUrl: zod_1.z.string().optional(),
paths: zod_1.z.record(zod_1.z.string(), zod_1.z.array(zod_1.z.string())).optional(),
})
.optional(),
});
//# sourceMappingURL=agent-loader.types.js.map