Ivo Gabe de Wolff

Results 67 comments of Ivo Gabe de Wolff

We've recently also seen this in a larger project, but we couldn't create a small reproduction from that (yet). It would be really useful if you could create a small...

You may need to use a larger input to use all GPU cores. Can you try that?

That's a good question. I don't know which syntax would be the best, but here are a few suggestions: ``` typescript implements Showable; // I would prefer this one. module...

It should be allowed on ambient external modules. For these modules two syntaxes should be allowed in my opinion: ``` typescript declare module "first" implements Foo { } declare module...

If you compile .ts files to .d.ts files, requires will reference a .d.ts files. Example: main.ts: ``` import other = require('./other'); export var a = new other.MyClass(); ``` other.ts: ```...

This can be used to publish a package written in typescript on npm. In the package you include the compiled javascript and the definition files, and a definitions.d.ts file. From...