feat(simulator): switch TS transpiler to ECMAScript 2022
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 14 Feb 2023 20:38:44 +0000 (21:38 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 14 Feb 2023 20:38:44 +0000 (21:38 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
.eslintrc.json
src/utils/Utils.ts
tsconfig.json

index b9b190f5146555b6aaf54eafe21321b8b8c128c1..f61fc080bd45c62d528d2947c4009d9942ca0ed9 100644 (file)
@@ -1,12 +1,12 @@
 {
   "root": true,
   "env": {
-    "es2020": true,
+    "es2022": true,
     "node": true,
     "mocha": true
   },
   "parserOptions": {
-    "ecmaVersion": 2020,
+    "ecmaVersion": 2022,
     "sourceType": "module"
   },
   "plugins": ["import"],
index 8a66d92d2cde25db89f225c0d6e0742adee45ae7..7b59118cae617aa3def0486baf58eb2ad857af13 100644 (file)
@@ -186,9 +186,7 @@ export class Utils {
   }
 
   public static objectHasOwnProperty(object: unknown, property: string): boolean {
-    return (
-      Utils.isObject(object) && (Object.prototype.hasOwnProperty.call(object, property) as boolean)
-    );
+    return Utils.isObject(object) && Object.hasOwn(object as object, property);
   }
 
   public static isCFEnvironment(): boolean {
index 9e4fe44ec96fbddde23720e5ca009878b5b276de..d84bff427ead290e9bd72da37d9472b595183e56 100644 (file)
@@ -4,9 +4,9 @@
 
     /* Basic Options */
     // "incremental": true,                   /* Enable incremental compilation */
-    "target": "es2020",                       /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
-    "module": "es2020",                       /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
-    "lib": ["es2020"],                        /* Specify library files to be included in the compilation. */
+    "target": "es2022",                       /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
+    "module": "es2022",                       /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
+    "lib": ["es2022"],                        /* Specify library files to be included in the compilation. */
     // "allowJs": true,                       /* Allow javascript files to be compiled. */
     // "checkJs": true,                       /* Report errors in .js files. */
     // "jsx": "preserve",                     /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */