Need to set lib in tsconfig.app.json to ES2022 or higher, and change target value to ES2022
EX:
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "**ES2022**",
"useDefineForClassFields": true,
"lib": ["**ES2022**", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
....