From 8ffd32036fc460c7dcf4fa413c7c5869673baba4 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Wed, 6 May 2026 14:52:52 -0700 Subject: [PATCH] feat(agent-sdk): add tsconfig --- sdks/typescript-agent-sdk/tsconfig.json | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 sdks/typescript-agent-sdk/tsconfig.json diff --git a/sdks/typescript-agent-sdk/tsconfig.json b/sdks/typescript-agent-sdk/tsconfig.json new file mode 100644 index 00000000000..d59b8332941 --- /dev/null +++ b/sdks/typescript-agent-sdk/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "Bundler", + "lib": ["ES2022", "DOM"], + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noUnusedLocals": false, + "noUnusedParameters": false, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "types": ["node"] + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "tests", "examples"] +}