Skip to content

Commit a83e4e6

Browse files
authored
feat: Switch to es2017 target to ensure native async/await. (#231)
1 parent 9d60361 commit a83e4e6

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

packages/sdk/akamai-base/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Uses "." so it can load package.json.
44
"rootDir": ".",
55
"outDir": "dist",
6-
"target": "es6",
6+
"target": "es2017",
77
"lib": ["ESNext"],
88
"module": "es6",
99
"strict": true,

packages/sdk/akamai-edgekv/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Uses "." so it can load package.json.
44
"rootDir": ".",
55
"outDir": "dist",
6-
"target": "es6",
6+
"target": "es2017",
77
"lib": ["es6"],
88
"module": "es6",
99
"strict": true,

packages/sdk/cloudflare/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Uses "." so it can load package.json.
44
"rootDir": ".",
55
"outDir": "dist",
6-
"target": "es6",
6+
"target": "es2017",
77
"lib": ["es6"],
88
"module": "commonjs",
99
"strict": true,

packages/sdk/server-node/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Uses "." so it can load package.json.
44
"rootDir": ".",
55
"outDir": "dist",
6-
"target": "es6",
6+
"target": "es2017",
77
"lib": ["es6"],
88
"module": "commonjs",
99
"strict": true,

packages/sdk/vercel/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Uses "." so it can load package.json.
44
"rootDir": ".",
55
"outDir": "dist",
6-
"target": "es6",
6+
"target": "es2017",
77
"lib": ["es6"],
88
"module": "commonjs",
99
"strict": true,

packages/shared/akamai-edgeworker-sdk/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"rootDir": "src",
44
"outDir": "dist",
5-
"target": "es6",
5+
"target": "es2017",
66
"lib": ["es6"],
77
"module": "commonjs",
88
"strict": true,

packages/shared/common/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"rootDir": "src",
44
"outDir": "dist",
5-
"target": "es6",
5+
"target": "es2017",
66
"lib": ["es6"],
77
"module": "commonjs",
88
"strict": true,

packages/shared/sdk-server-edge/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"rootDir": ".",
44
"outDir": "dist",
5-
"target": "es6",
5+
"target": "es2017",
66
"lib": ["es6", "webworker"],
77
"module": "commonjs",
88
"strict": true,

packages/shared/sdk-server/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"rootDir": "src",
44
"outDir": "dist",
5-
"target": "es6",
5+
"target": "es2017",
66
"lib": ["es6"],
77
"module": "commonjs",
88
"strict": true,

packages/store/node-server-sdk-dynamodb/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Uses "." so it can load package.json.
44
"rootDir": ".",
55
"outDir": "dist",
6-
"target": "es6",
6+
"target": "es2017",
77
"lib": ["es6"],
88
"module": "commonjs",
99
"strict": true,

0 commit comments

Comments
 (0)