Candid Dauth

Results 36 comments of Candid Dauth
trafficstars

It works because it's an input field, whose value never becomes `undefined`. In my real-world scenario, the data type of the field is more complex and needs to be set...

Are there any updates on this? This remains an issue with Yarn Berry. I have a project that is forced to stick with `@types/[email protected]`. Plenty of `@types` dependencies have a...

Adding support for `vitest` might be nice, but it does not solve the problem that I describe here. The problem described here is that dependency hoisting causes jest/vitest to be...

I'm experiencing the same problem in my repository [FacilMap/facilmap](https://github.com/FacilMap/facilmap). How to reproduce: Check out the repository at tag `v4.0.0`, run `yarn install`, then run `yarn build`. The error happens during...

Is there any progress on this? Are there any known workarounds?

In case this is helpful to anyone. I'm using api-extractor through [vite-plugin-dts](https://github.com/qmhc/vite-plugin-dts) with `rollupTypes: true`. As a workaround for this issue, I moved all my module augmentations to a single...

I'm getting lost in docs. My inline comments are triggering errors when I use this loader, how can I solve it then? When running stylelint manually, I can fix it...

The issue styled-components/stylelint-processor-styled-components#170 that you are linking simply explains the fact that the `syntax` property is not supported in the `.stylelintrc` config file. But it is still supported and I...

It cannot be specified in the stylelintrc config file, but it can be in the options of the API call, as documented [here](https://github.com/stylelint/stylelint/blob/master/docs/user-guide/node-api.md#syntax).

Here is a very hacky workaround that will definitely not work forever: ```javascript if (import.meta.hot) { // Prevent full reload, see https://github.com/vitejs/vite/issues/5763#issuecomment-1974235806 import.meta.hot.on('vite:beforeFullReload', (payload) => { payload.path = "(WORKAROUND).html"; });...