Sean Lee

Results 36 comments of Sean Lee

@nreid260 The issue persists on 20210906.0.0-nightly.

It appears that the issue now coming from a somewhere else, which reminds me of https://github.com/google/closure-compiler/issues/2132. The inclusion of the externs `es6_proxy.js` seems to be the culprit. It contains a...

``` java.lang.RuntimeException: INTERNAL COMPILER ERROR. Please report this problem. null Node(DYNAMIC_IMPORT): a.js:1:0 import('./b.js').then(out => { Parent(GETPROP then): a.js:1:17 import('./b.js').then(out => { at com.google.javascript.jscomp.ClosureRewriteModule.getBinaryModuleNamespace(ClosureRewriteModule.java:328) at com.google.javascript.jscomp.ModuleRenaming$GlobalizedModuleName.create(ModuleRenaming.java:213) at com.google.javascript.jscomp.RewriteDynamicImports.visit(RewriteDynamicImports.java:128) at com.google.javascript.jscomp.NodeTraversal.traverseBranch(NodeTraversal.java:872) at...

If `npx` fixes it, it could be due to typescript version mismatch. Also, as I recall the `transformBundle` code path should not be taken for projects fed to tsickle. If...

In the statement ```js import heap from '../@types/heap/index'; ``` the imported module name is a relative path, and it refers to a file located there. When tscc collects source files...

In the README, I have mentioned about declaring relative path as an external module, but now I found that it is not very prominent. I guess it'd be nice to...

Could you provide steps to reproduce? I tried to import `@tensorflowjs/tfjs` but due to a type conflict of `WebGL2RenderingContext` in `@types/webgl2` and `lib.dom.d.ts`, even the `tsc` command fails.

I can now reproduce the issue with `skipLibCheck: true` as suggested in https://github.com/tensorflow/tfjs/issues/2007. Is this your setup? It seems that this option is problematic, no externs are generated with it....

Update on this: as I understand solving the following problems consists of resolving the issue. 1. When an external module's type declaration file merely re-export something from yet another external...