From 7329856757612bb24d3af0ff4ab3da6bb613e4bb Mon Sep 17 00:00:00 2001 From: Avi Vahl Date: Sun, 8 Dec 2024 14:43:23 +0200 Subject: [PATCH] feat!: bump syntax/lib to es2022 --- tsconfig.base.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 7f328546..568a297f 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -11,8 +11,8 @@ // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ /* Language and Environment */ - "target": "es2019", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ - "lib": ["es2019", "dom"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + "target": "es2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + "lib": ["es2022", "dom"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ "jsx": "react", /* Specify what JSX code is generated. */ // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */