We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde91b4 commit 4a05b13Copy full SHA for 4a05b13
README.md
@@ -45,6 +45,7 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the
45
### **WORK IN PROGRESS**
46
47
* (klein0r) Fixed some missing translations (uk)
48
+* (klein0r) Raised supported ecmaVersion from es2021 to es2022 (node18)
49
50
### 8.0.0 (2024-04-05)
51
lib/typescriptSettings.js
@@ -1,8 +1,8 @@
1
const typescript = require('typescript');
2
3
-// NodeJS 16+ supports the features of ES2021
+// NodeJS 18+ supports the features of ES2022
4
// consider changing this, so we get to support the newest features too
5
-const targetTsLib = 'es2021';
+const targetTsLib = 'es2022';
6
7
/** @type {typescript.CompilerOptions} */
8
const tsCompilerOptions = {
0 commit comments