forked from zirkelc/serverless-esm-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.ts
46 lines (44 loc) · 927 Bytes
/
serverless.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import type { AWS } from '@serverless/typescript';
const config: AWS = {
service: 'serverless-esm-ts',
frameworkVersion: '3',
variablesResolutionMode: '20210326',
plugins: [
'serverless-esbuild',
],
custom: {
esbuild: {
format: 'esm',
outExtension: { '.js': '.mjs' },
bundle: true,
minify: false,
sourcemap: true,
keepOutputDirectory: true,
define: { 'require.resolve': undefined },
platform: 'node',
concurrency: 10,
},
},
provider: {
name: 'aws',
runtime: 'nodejs18.x',
region: 'us-east-1',
stage: 'dev',
lambdaHashingVersion: '20201221',
apiGateway: {
minimumCompressionSize: 1024,
shouldStartNameWithService: true,
},
environment: {
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1',
NODE_OPTIONS: '--enable-source-maps --stack-trace-limit=1000',
},
},
functions: {
hello: {
handler: 'src/handler.handler',
url: true,
}
}
}
export default config;