Browse Source

fix(ts): set target to es2022

This resolves the warning: TypeScript compiler options "target" and "useDefineForClassFields" are set to "ES2022" and "false" respectively by the Angular CLI. To control ECMA version and features use the Browserslist configuration. For more information, see https://angular.dev/tools/cli/build#configuring-browser-compatibility.
pull/6105/head
Kenrick Tandrian 1 month ago
parent
commit
570cb67dff
  1. 2
      libs/ui/tsconfig.json

2
libs/ui/tsconfig.json

@ -14,7 +14,7 @@
}
],
"compilerOptions": {
"target": "es2020",
"target": "es2022",
// TODO: Remove once solved in tsconfig.base.json
"strict": false,
"noImplicitReturns": true,

Loading…
Cancel
Save