我使用Serverless framework部署后端。 我的lambda使用Typescript编写,我使用serverless-webpack插件进行部署。 无服务器允许使用以下语法reference variables in javascript files:
# serverless.yml
service: new-service
provider: aws
custom: ${file(../config.js)}
但是它适用于javascript。我该如何使用Typescript代码进行相同操作? 我的目标是用Typescript编写所有项目代码。