Skip to content

Commit

Permalink
fix: updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
khanzzirfan committed Nov 22, 2023
1 parent 0a679c0 commit 6a64218
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 2 additions & 6 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,9 @@ provider:
frameworkVersion: '3'

package:
# Any `include`, `exclude` logic is applied to the whole service, the same
# as built-in serverless packaging.
# include: ...
individually: false
exclude:
- "**/node_modules" # included on Lambda.a
- "**/ffmpeg-layer"
- "!package.json"
- package.json

functions:
main:
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
"allowSyntheticDefaultImports": true,
"target": "es2019",
"sourceMap": true,
"outDir": ".serverless",
"outDir": "build",
"rootDir": "./",
"baseUrl": "./",
"esModuleInterop": true
}
},
"include": ["src/**/*"]
}

0 comments on commit 6a64218

Please sign in to comment.