aws-samples / aws-cdk-examples

Example projects using the AWS CDK
Apache License 2.0
5.08k stars 2.14k forks source link

Add Missing path Import to TypeScript Example #991

Closed GitSumito closed 7 months ago

GitSumito commented 7 months ago

This pull request addresses a runtime error encountered in one of the TypeScript examples due to the missing import statement for the path module. By adding import path = require('path');, this change ensures the application can correctly utilize the path module's functionalities, thus maintaining the stability and functionality of the example.