Hien Truong
Hien Truong
Hey @fb55 I could miss something but `InsertionMode` was not exported inside [parser/index.ts](https://github.com/inikulin/parse5/blob/master/packages/parse5/lib/parser/index.ts#L41) and I couldn't find anywhere that indirectly exports the enum.
The authors of `single-spa-layout` extended `Parser` in their project https://github.com/single-spa/single-spa-layout/blob/main/src/server/CustomParser.js. I'm rewriting that piece of code into TypeScript (after upgrading the `parse5` dependency to v7) for a project in my...
This PR is quite the same as [this one](https://github.com/single-spa/single-spa-layout/pull/169/files) (merged). TS 4.7 introduces the new `moduleResolution: NodeNext` option (which is **ES module in NodeJS**) that will use `exports` property in...
I face the same issue too, with dependency versions: "rollup": "2.78.1", "rollup-plugin-ts": "3.0.2", "typescript": "4.7.4" ```ts export type Dict = { [key: string]: Value }; ``` was built to ```ts...
Thanks @tihuan, as you suggested, but instead of downgrading, I upgraded to "typescript": "4.8.2" and now it works. But 4.8.2 version of TS seems to introduce quite many breaking changes...
> Would this still be compatible with old types when not giving the state? From the view of library consumer this change only adds a new utility type and does...