Homa Wong

Results 275 comments of Homa Wong

> It ought to do more than just make the Blob URLs. It ought to subsequently allow a URL so generated to be provided to the likes of XMLHttpRequest. Does...

> var url = `blob:${serializeURL(location.origin)}/${uuid()}`; The `serializeURL()` does a bit more than the algorithm described in the spec. Should we use it or implement exactly as in the spec?

Ok, so what's need to implement that?

Repro: https://github.com/unional/domture/tree/global-script-with-type It uses `plugin-typescript` internally.

Here is the systemjs config being used: ```json { "baseURL": "node_modules", "packageConfigPaths": [ "@*/*/package.json", "*/package.json" ], "map": { "app": "./fixtures/ts" }, "packages": { "app": { "defaultExtension": "ts" }, "typescript": {...

Seems like even when loading global ts files without typed information also have some quirks. I don't have a repro on this one because it is related to my work,...

Thanks Frank. I try to change some config as you suggest and now this one works: ```ts { "baseURL": "node_modules", "packageConfigPaths": [ "@*/*/package.json", "*/package.json" ], "map": { "app": "./fixtures/ts" },...

YES! that also solves the second issue. Now the remaining question is why it doesn't work without the `meta/*.ts/loader` config.

> "watchPlugins": [ [jest-plugin-filename, { "filter": "fuzzy" }] ], That would limit the filter to "fuzzy", maybe making it an object? ```js "watchPlugins": [ ["jest-watch-typeahead", { "filename": true | {...

Don't know if this is the right place, but I have the same issue. Tests time out on appveyor but work on travis. For example: https://ci.appveyor.com/project/unional/generator-typings/build/1.0.8