I have the most basic Lit code like this:
import { property } from 'lit/decorators.js';
export class MyClass extends LitElement {
@property()
rows = [];
}
Outside of this sample, rows has data. My code renders as expected. However TS complains property
is not being used? Is there some setup I may be missing around TS and decorators? I built the project using OWC.