Skip to content

Commit

Permalink
update tsconfig target to es2020
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Oct 14, 2021
1 parent 07ec719 commit 43dc65a
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,7 +29,7 @@
"snyk-protect": "snyk protect"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"devDependencies": {
"chalk": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-app/e2e/tsconfig.e2e.json
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"target": "es2020",
"types":[
"jasmine",
"node"
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-core/package.json
Expand Up @@ -10,7 +10,7 @@
"prepare": "npm run declarations"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-core/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "./src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-express-middleware/package.json
Expand Up @@ -12,7 +12,7 @@
"example": "nodemon example/index.ts"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-express-middleware/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "./",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-koa-middleware/package.json
Expand Up @@ -11,7 +11,7 @@
"example": "nodemon example/index.ts"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-koa-middleware/tsconfig.json
Expand Up @@ -7,7 +7,7 @@
"outDir": "build/",
"rootDir": "./",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-plugin/package.json
Expand Up @@ -10,7 +10,7 @@
"prepare": "npm run declarations"
},
"engines": {
"node": ">= 6.9.1"
"node": ">= 12"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-plugin/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "./src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"lib": [
"dom",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-static/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": "build/",
"rootDir": "src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"sourceMap": true,
"skipLibCheck": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-altair-graphql/tsconfig.json
Expand Up @@ -3,7 +3,7 @@
"outDir": ".",
"rootDir": "src",
"declaration": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"sourceMap": true,
"lib": [
Expand Down

0 comments on commit 43dc65a

Please sign in to comment.