Results 49 issues of _Kerman

The following 4 lines can have different results: ```js // Assuming that both a and b are unused. const [a, b] = unknown; const [ , ,] = unknown; const...

For example: ```js try { 1n + 1 } catch (e) { } ``` Rollup has an option for this: https://rollupjs.org/configuration-options/#treeshake-trycatchdeoptimization

This speeds up the demo slides' start-up time (from running the command to printing the URLs) by almost 2s on my machine.

Assets paths in frontmatter won't be resolved by Vite, thus they will be broken once `baseURL` changes. However, there is no way to automatically detect whether a string in the...

🍪 p3-highly-demanded

- fix publishing of vscode extension - fix build config - dedupe `prettier` - prevent multiple unused files from being packed into .vsix Blocked by https://github.com/oxc-project/oxc/issues/11840. In fact this problem...

`pluginVue.transform(mainModule)` must be called before `pluginVue.load(styleModule)` to update the internal cache of `@vitejs/plugin-vue`. Otherwise, the style module will be reloaded as the previous one.