From 7b26b49586836080e9f011763e8b004c399f1f00 Mon Sep 17 00:00:00 2001 From: Massimiliano Angelino Date: Thu, 2 Apr 2026 12:15:46 +0100 Subject: [PATCH] fix: add missing tsconfig.json --- .../07-connect-to-vpc-resources/tsconfig.json | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 01-tutorials/01-AgentCore-runtime/03-advanced-concepts/07-connect-to-vpc-resources/tsconfig.json diff --git a/01-tutorials/01-AgentCore-runtime/03-advanced-concepts/07-connect-to-vpc-resources/tsconfig.json b/01-tutorials/01-AgentCore-runtime/03-advanced-concepts/07-connect-to-vpc-resources/tsconfig.json new file mode 100644 index 000000000..1717e97e0 --- /dev/null +++ b/01-tutorials/01-AgentCore-runtime/03-advanced-concepts/07-connect-to-vpc-resources/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["es2020"], + "declaration": true, + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUnusedLocals": false, + "noUnusedParameters": false, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": false, + "inlineSourceMap": true, + "inlineSources": true, + "experimentalDecorators": true, + "strictPropertyInitialization": false, + "typeRoots": ["./node_modules/@types"], + "outDir": "./cdk.out", + "rootDir": "." + }, + "exclude": ["node_modules", "cdk.out"] +}