tkgroot
tkgroot
During the create process the initial screen displays a link which leads to a 404, this one https://open-wc.org/init/ I'm currently busy to fix a typo anyways, so I could change...
such a good project deserves to be over-engineered. The commit messages give a clear indication of what have been done. Why I did what I did: - the idea is...
if the `tsconfig.json` contains the property `checkJs: true`, javascript files are not checked by tsc-files since the files filters do ignore file extensions other than `ts` and `tsx`. However, since...
if emitDeclarationOnly flag is set in the project tsconfig file the tsc-files command will fail in combination with the --noEmit flag since these two options aren't combinable.
```json { "compilerOptions": { "emitDeclarationOnly": true, } } ``` ```sh ✖ tsc-files --noEmit: tsconfig.d4ol061dhcf.json(18,5): error TS5053: Option 'emitDeclarationOnly' cannot be specified with option 'noEmit'. ```
_Issue #, if available:_ _Description of changes:_ As documented [applying preprocessors in config](https://styledictionary.com/reference/hooks/preprocessors/#applying-it-in-config), it shows that preprocessors can be defined for platforms specifically. However if placed as a platform specific...
fixes #270
**Checklist** - [ ] Did you run the analyzer with the `--dev` flag to get more information? - [ ] Did you create a **minimal** reproduction in the [playground](https://custom-elements-manifest.netlify.app/)? Completing...