Skip to content

Commit

Permalink
test: refactor serverless-plugin-typescript to use es6 modules
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Aug 31, 2022
1 parent ac2676a commit 013cc6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "serverless-plugin-typescript-test",
"type": "module",
"devDependencies": {
"@types/aws-lambda": "8.10.102",
"serverless-plugin-typescript": "2.1.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"esModuleInterop": true,
"module": "CommonJS",
"module": "ES2020",
"moduleResolution": "Node",
"sourceMap": true,
"strict": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"esModuleInterop": true,
"module": "ES2020",
"moduleResolution": "Node",
"sourceMap": true,
"strict": true,
"target": "ES2020"
}
Expand Down

0 comments on commit 013cc6f

Please sign in to comment.