我有最基本的Lit代码如下:
import { property } from 'lit/decorators.js';
export class MyClass extends LitElement {
@property()
rows = [];
}
在这个例子之外,行有数据。我的代码按预期呈现。但是TS抱怨property
没有被使用?在TS和装饰器周围是否有一些设置我可能遗漏了?我使用OWC构建了这个项目。
我有最基本的Lit代码如下:
import { property } from 'lit/decorators.js';
export class MyClass extends LitElement {
@property()
rows = [];
}
在这个例子之外,行有数据。我的代码按预期呈现。但是TS抱怨property
没有被使用?在TS和装饰器周围是否有一些设置我可能遗漏了?我使用OWC构建了这个项目。
1条答案
按热度按时间u0njafvf1#
Open WC好像过时了,需要
5.*
的时候就安装4.33.0
的typescript lint一般解决方案如下所示:Eslint wong error
is defined but never used
warning in NestJs for all decorators我将生成的
package.json
更新为:我在VS Code中重新启动了ESLint服务器,一切正常。
当我报告时,它几乎立即通过https://github.com/open-wc/open-wc/issues/2557修复。
把这个问题留给后人。