open-wc / custom-elements-manifest-deprecated

Custom Elements Manifest is a file format that describes custom elements in your project.
8 stars 4 forks source link

do something with TS `readonly` #39

Closed thepassle closed 3 years ago

thepassle commented 3 years ago

currently readonly is not specified in the schema, and will incorrectly be handled by the analyzer:

private foo: readonly string = '';
"type": {
  "type": "readonly string"
},