Pelle Wessman

Results 795 comments of Pelle Wessman

@mightyiam I thought `ts-standard` would also get a release and be part of the same CD setup you wanted to have?

Would be happy to work closer with the Fastify community on Standard related matters. As a co-maintainer of Standard, a user of Fastify myself and a freelancer with lot of...

For reference: https://github.com/refined-github/refined-github/issues/14 has now been figured out

I'm a bit choked right now, but I will have some discussions on this subject tomorrow, I may come back after that and see

Also, you probably want to use [`eslint-config-standard-jsx`](https://github.com/standard/eslint-config-standard-jsx) instead of this one. That's why this wasn't included in the major releases of `standard@17`, because `standard` itself uses `eslint-config-standard-jsx` and it's a...

Note to self: From the looks of it this is a straight extension on top of the jsx one: https://github.com/standard/eslint-config-standard-react/commit/c357387937a7cfcaad33cbe6e3ac7f4a990d170d > BREAKING: Stop extending from eslint-config-standard-jsx > > To update,...

@flippidippi The rules in `eslint-config-standard-react` are the React specific ones on top of the basic JSX ones, so they can't be added to `eslint-config-standard-jsx`. Whether it's meaningful to maintain in...

It’s probably primarily needed when importing a CJS module or exporting as a CJS module, but overall it seems like it’s the ESM setup that the TS team intends to...

Does anyone know the TypeScript teams intention here? I’ve tried to figure it out at it all pointed me to `esModuleInterop` being the option they promote

An [example from `read-pkg`](https://github.com/sindresorhus/read-pkg/compare/v5.2.0...v6.0.0): ESM-code: [![Skärmavbild 2021-03-29 kl 09 28 07](https://user-images.githubusercontent.com/34457/112801415-274d1780-9071-11eb-87a9-1aa7ac5482e2.png)](https://github.com/sindresorhus/read-pkg/blob/55549f35b4fafbde90de4ca8b2136ad1d4d4dcb5/index.js#L4) TS-code: [![Skärmavbild 2021-03-29 kl 09 28 15](https://user-images.githubusercontent.com/34457/112801395-21efcd00-9071-11eb-9977-f6d4b2e8a17f.png)](https://github.com/sindresorhus/read-pkg/blob/55549f35b4fafbde90de4ca8b2136ad1d4d4dcb5/index.d.ts#L2) They should both really be the same, but yeah, that would probably...