Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
feat: compile to ES2020
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for for node<12
  • Loading branch information
s-r-x committed Mar 2, 2022
1 parent dab5874 commit 384d113
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion fixtures/bull-server/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ const monitor = new BullMonitorExpress({
(queue) => new BullAdapter(queue as any, { readonly: true })
),
],
gqlPlayground: true,
gqlIntrospection: true,
// metrics: {
// collectInterval: { seconds: 30 },
Expand Down
2 changes: 1 addition & 1 deletion fixtures/bull-server/server/tsconfig.docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"esModuleInterop": true,
"moduleResolution": "node",
"allowJs": true,
"target": "ES2017",
"target": "ES2020",
"sourceMap": false,
"lib": ["ESNext"],
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion fixtures/bull-server/server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"declaration": false,
"strictNullChecks": true,
"esModuleInterop": true,
"target": "es6",
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": false,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"declaration": true,
"strictNullChecks": true,
"esModuleInterop": true,
"target": "ES2018",
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"declaration": false,
"strictNullChecks": true,
"esModuleInterop": true,
"target": "ES2018",
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
Expand Down

0 comments on commit 384d113

Please sign in to comment.