コンパイルエラーで下記のようなログが表示されます。
export default async function testPupperter(_params) {
^^^^^^
下記のコードでは上記のエラーが表示されます。
const test = async(_event:any)=>{ const text = 'hellp' text } export default test
こちらも同様に上記のエラーが表示されます。
export default async function test(_params:any) { const text = 'help' text }
こちらのコードであれば成功します。
module.exports.test = async (event:any) => { event return { statusCode: 200, body: JSON.stringify( { message: 'Go Serverless v1.0! Your function executed successfully!', input: event, }, null, 2 ), }; };
tsconfigでは"target"を"ESNEXT",に設定しています。
アドバイスお願いします。
回答1件
あなたの回答
tips
プレビュー