Alexandru Ciucă
Alexandru Ciucă
This effectively forces users to add the postfix `!` operator for every `Map#get`. It doesn't look like something that can be statically analyzed by the compiler. There are two consequences,...
@RyanCavanaugh , changing the `Map` interface to be less strict goes in the opposite direction of having the 'strictNullChecks' flag in the first place. The `get` method can and will...
I'm trying to update to webpack 3 and getting the same deprecation warnings. I tried @dorianWB 's fix, but I get other errors from SourceMapDevToolPlugin now: ``` .../node_modules/webpack/lib/SourceMapDevToolPlugin.js:22 if(asset.__SourceMapDevToolFile ===...
This seems to be an issue with Emscripten, that was fixed in later versions. Unfortunately, I wasn't able to compile 7z with the latest version of Emscripten. I can only...
I can only suggest referencing the file with a path relative to the working directory instead.
Are you running this in NodeJS or browser environment? In browsers, all emscripten FS adapters end up preloading the entire file system into memory because only synchronous APIs work with...
Looks fine to me on a fresh install. Please post your `tsconfig.json`.
This appears to happen when `"type": "module"` in `package.json` and `"moduleResolution": "nodenext", ` in `tsconfig.json`. It's because of the ESM changes in node16. `7z-wasm` is not an ESM package and...
I created an archive containing a single file named `üöäăîș.txt`. Listing the archive indeed produces incorrect output (most likely stdout is encoded as ASCII?). Extracting the archive however produced the...