TS1219TS1219 — Experimental Decorators Warning
Decorators require the experimentalDecorators compiler option to be enabled.
TS2610A derived class defines a property where the base class has an accessor.
The base class uses getter/setter accessors for a member, but the derived class declares it as a plain property. TypeScript requires consistency between accessors and properties in inheritance.
Use getter/setter accessors in the derived class to match the base class. Do not override accessors with plain properties. Match the access pattern of the base class.
TS1219Decorators require the experimentalDecorators compiler option to be enabled.
TS2488The type being iterated does not have a Symbol.iterator method.
TS2554The number of arguments passed to a function does not match the number of required parameters.
TS1479The relative import path requires a file extension under Node.js ESM resolution.
TS6133A variable, import, or parameter is declared but its value is never read.
TS2564A class property is not initialized in the constructor and has no default value.