Thomas Allmer

Results 175 comments of Thomas Allmer

``` import chaiDom from 'chai-dom' window.chai.use(chaiDom) ``` that only works when using a build tool for the tests right? if you use this directly in the browser it will fail...

sounds like a good idea 👍

simplest way to reproduce it is 👉 `test.mjs` ```js import { setupServer } from 'msw/node'; ``` execute in the console ```bash node test.mjs ``` will result in ``` $ node...

I'm happy to help author web components related sections and review overall

I started an outline based on the one from last year - feel free to adjust/add/remove... I tried to add some details on what to capture - not sure if...

It's a new year :tada: So anything we can do to help this along?

a friendly reminder if there is anything we can do to help?

So the idea is to keep js as is (just add some typescript definition files + jsdocs) but still run a check via typescript? that actually sounds really nice :)

@evilebottnawi at this [wip](https://github.com/webpack-contrib/karma-webpack/pull/385) you can see my intial attempt at starting type linting - can you pls check if it's the right direction? also would we still need to...

> Generating the typedefs is done simply by adding "declaration": true to the tsconfig compilerOptions, and adding a "types": "./lib/main.d.ts" entry to the package.json. @matthieu-foucault hmm that does not seem...