@aws-cdk/aws-lambda-nodejsというCDKのモジュールがあり、Node.js関連(TypeScriptでもOK)のLambda関数を作るときに便利。 new lambda.NodejsFunction(this, 'MyFunction', { entry: '/path/to/my/file.ts', // accepts .js, .jsx, .ts and .tsx files handler: 'myExportedFunc', // defaults to 'handler' }); 以上のような感じで作れるので大変楽なんだけど、内部でesbuildでビルドしている関係でちょっと制限がある。esbuildはemitDecoratorをサポートしてない。対応させるためのp…