Ray

Results 127 comments of Ray

IMO This is expected, you should include `*.vue` files if you want them to get type-checked.

I guess this is because using index signatures to classes is allowed in typescript: ```ts class a {} a['foo'] // No errors ```

We read properties directly from the class, so `Class.xxx` will report an error, but `Class['xxx']` doesn't. We need to find a workaround