Skip to content

Commit

Permalink
Update tsconfig to target es2017 (#15545)
Browse files Browse the repository at this point in the history
  • Loading branch information
xirzec authored Jun 9, 2021
1 parent 36d7801 commit 5b5d7a9
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion common/tools/dev-tool/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2015",
"target": "ES2017",
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
Expand Down
2 changes: 1 addition & 1 deletion common/tools/eslint-plugin-azure-sdk/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"pretty": true,
"removeComments": true,
"strict": true,
"target": "es2016",
"target": "es2017",
"types": ["node"],
"sourceMap": true,
"resolveJsonModule": true
Expand Down
1 change: 0 additions & 1 deletion sdk/core/core-amqp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": "../../../tsconfig.package",
"compilerOptions": {
"target": "es6",
"outDir": "./dist-esm",
"declarationDir": "./types",
"resolveJsonModule": true
Expand Down
1 change: 0 additions & 1 deletion sdk/digitaltwins/digital-twins-core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "../../../tsconfig.package",
"compilerOptions": {
"strict": true,
"target": "es5",
"sourceMap": true,
"lib": ["es6", "dom"],
"declaration": true,
Expand Down
1 change: 0 additions & 1 deletion sdk/identity/identity/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": "../../../tsconfig.package",
"compilerOptions": {
"target": "es6",
"lib": ["DOM"],
"declarationDir": "./types",
"outDir": "./dist-esm",
Expand Down
2 changes: 1 addition & 1 deletion sdk/test-utils/recorder/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../../tsconfig.package",
"compilerOptions": {
"declarationDir": "./typings",
"target": "es5",
"target": "es2017",
"outDir": "./dist-esm",
"lib": ["dom", "es5", "es6", "es7", "esnext"]
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2015",
"target": "ES2017",
"module": "commonjs",
"lib": [],
"declaration": true,
Expand Down

0 comments on commit 5b5d7a9

Please sign in to comment.