Frank Lemanschik

Results 110 comments of Frank Lemanschik

see: https://github.com/microsoft/vscode-loader/issues/46 - [ ] https://github.com/microsoft/vscode/pull/166033

maybe you want to play around with: - http://evmar.github.io/webtreemap/

@jakebailey i have a working ESM build in split mode i can do a PR but i am using Rollup and it is blazing fast and would exactly align with...

@DanielRosenwasser your correct i guess you get the rest sorted out with typescript alone in future i am happy that you finally tackle the tech dept it was many years...

looks looks like this is related to wrong type use will fix it in https://github.com/lemanschik/git where i prepare a total rewrite into clean ESNext that is directly load able. +...

@pmlopes ```js import('./resolverIdHook.js?id=myModuleSpecifier').then((resolvedId)=>import(resolvedId)); ``` ```js // This defines what happens const importObject = { imports: { imported_func: (arg) => console.log(arg) } }; WebAssembly.instantiateStreaming(fetch("simple.wasm"), importObject).then( (loadedInMemory) => loadedInMemory.instance.exports.exported_func() ); ``` import...

```ts new Blob(['text here']).stream().pipeTo( await (await showSaveFilePicker({ suggestedName: 'Any-suggestedName.txt' })).createWritable())); ``` see: https://github.com/rndme/download/pull/117/files Closed by: - #117 - #118

small but great addition to the readme

just my 5 cent doesen't that overall add a big extra problem for that we need to create additional tooling i see we shifting the problems around we change the...

My Final Conclusion is that i stay completely away from import maps i await the serviceWorker Registration and move all specifier lookups into it as it receives the raw request...