Rômulo Ruas
Rômulo Ruas
Sorry, didn't had a chance to look into it and probably will not have in a nearby future :(
There's a discrepancy between the source: https://github.com/jsonurl/jsonurl-js/blob/v1.1.8/src/JsonURL.js#L1832 And the packaged code: https://www.runpkg.com/?@jsonurl/[email protected]/dist/jsonurl.noproto.js#2281
This works in VSCode: ```ts /** * {@link file://./foo.ts} */ ``` Special note for when you try to go a level above, you still need to start with `./`: ```ts...
@bfricka, this way you are just bundling the version that is loaded by the snippet, which changes the global `window.mixpanel` object. It will either increase your bundle size by ~50kB,...
@bfricka, `alias('mixpanel-browser', 'mixpanel.min.js')` will resolve to `node_modules/mixpanel-browser/dist/mixpanel.min.js`. If you inspect [here](https://www.npmjs.com/package/mixpanel-browser?activeTab=code), this file has 54.9kB. And I don't want the snippet because it will load the main library from its...
I missed the "modified version of the lazy loader snippet" in your first comment, which defeats the purpose of requesting a feature here. I'm not looking for a solution. My...
Implementation suggestion: allow 2 ways of creating plugins - "low-level" plugin, using standard UI toolkit - Webview plugin Technically the second could be a separate boilerplate project built on top...
@daverayment, thanks for the info. I would also suggest investigating caching. I know that Apple's QuickLook has a daemon what provides some level of caching, so when inspecting something that...
Replacing it with this solved my problem: ```ts type UtilRequiredKeys = T extends null ? never : Omit & Required; ``` Still running more tests to check possible side-effects.