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"] +}