I have a simple example of Lit code that looks like this:
import { property } from 'lit/decorators.js';
export class MyClass extends LitElement {
@property()
rows = [];
}
Even though my code renders correctly and works with existing data, TypeScript gives me an error saying property
is not being used. Could there be something missing in my TS setup related to decorators? I created the project using the OWC tool.