Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020
"ecmaVersion": 2023
},
"plugins": [
"simple-import-sort",
Expand Down Expand Up @@ -175,4 +175,4 @@
}
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x, 22.x, latest]
node-version: ["20.19.0", 22.x, latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
17 changes: 14 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions packages/bson-bench/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"prepare": "node ./etc/prepare.js"
},
"engines": {
"node": ">=16.20.1",
"npm": ">=9.0.0"
"node": ">=20.19.0"
},
"keywords": [],
"author": "The MongoDB NodeJS Team <[email protected]>",
Expand All @@ -23,4 +22,4 @@
"devDependencies": {
"bson": "4.7"
}
}
}
3 changes: 1 addition & 2 deletions packages/evergreen-timestamp-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"main": "./index.mjs",
"scripts": {},
"engines": {
"node": ">=16.20.1",
"npm": ">=9.0.0"
"node": ">=20.19.0"
},
"keywords": [],
"author": "The MongoDB NodeJS Team <[email protected]>",
Expand Down
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
"checkJs": false,
"strict": true,
"alwaysStrict": true,
"target": "ES2021",
"target": "ES2023",
"declaration": true,
"module": "commonJS",
"moduleResolution": "node",
"skipLibCheck": true,
"erasableSyntaxOnly": true,
"lib": [
"es2021",
"ES2022.Error"
"es2023"
],
// We don't make use of tslib helpers, all syntax used is supported by target engine
"importHelpers": false,
Expand All @@ -33,4 +32,4 @@
"transpileOnly": true,
"compiler": "typescript-cached-transpile"
}
}
}