You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While packaging 4.4.3 for Debian, the tools complained:
E: node-typescript source: source-is-missing lib/tsc.js line 100216 is 9536 characters long (>512)
E: node-typescript source: source-is-missing lib/tsserver.js line 148247 is 9536 characters long (>512)
E: node-typescript source: source-is-missing lib/tsserverlibrary.js line 147421 is 9536 characters long (>512)
E: node-typescript source: source-is-missing lib/typescript.js line 138426 is 9536 characters long (>512)
E: node-typescript source: source-is-missing lib/typescriptServices.js line 138426 is 9536 characters long (>512)
E: node-typescript source: source-is-missing lib/typingsInstaller.js line 103440 is 9536 characters long (>512)
and in fact, the problem is with unicodeES3Identifier* variables: it is legitimate source code, but indeed looks suspicious.
I suggest to share those variables instead of copying them in several source files: that will be much safer in the long run.
The text was updated successfully, but these errors were encountered:
Then I'm not sure what your issue is. Values in the .js files can't be shared, because the compiler is not modularized - every .js file is running independently. Your issue is quite brief on the details and does not follow the issue template, so it's quite hard to make out what you actually want.
While packaging 4.4.3 for Debian, the tools complained:
and in fact, the problem is with unicodeES3Identifier* variables: it is legitimate source code, but indeed looks suspicious.
I suggest to share those variables instead of copying them in several source files: that will be much safer in the long run.
The text was updated successfully, but these errors were encountered: