Wiktor Jurkiewicz

Results 17 comments of Wiktor Jurkiewicz

I'll point out some things: 1. `rustc_codegen_spirv` _requires_ the following components to _compile_: ["rustc-dev", "llvm-tools-preview"], so in order to install them we are forced to use `rustup`, so as a...

Hi, I've faced with the same issue, It must be related to how configure script works. ```zsh ➜ proxychains git:(master) ./configure Darwin done, now run make && make install ➜...

I believe that's not true. `AsyncHook` is declared by `tapable.d.ts` and when compiling code like this: ```ts import { AsyncHook } from "tapable"; const someHook = new AsyncHook(); ``` Typescript...

Oh you are right. There seams to be some "feature" of typescript which automatically exports declared stuff. The only "workaroud" I've found is to declare the "private" types in separate...

No I don't need it, I meant that the fact that I'm able to import it (at least it types) from `tapable` is very confusing.