Due to a bug in the existing banner, `typescript` module was require-d instead of reusing the module passed in from tsserver. This bug is caused by some source files in language-service that imports `typescript` instead of `typescript/lib/tsserverlibrary`. This is not an unsupported use case, it's just that when typescript is resolved in the banner we have to be very careful about which modules to "require". The convoluted logic in the banner makes it very hard to detect anomalies. This commit cleans it up and removes a lot of unneeded code. This commit also removes `ts` import in typescript_host.ts and use `tss` instead to make it less confusing. PR Close #34262
29 lines
676 B
JavaScript
29 lines
676 B
JavaScript
/**
|
|
* @license Angular v0.0.0-PLACEHOLDER
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
* License: MIT
|
|
*/
|
|
|
|
let $deferred;
|
|
function define(modules, callback) {
|
|
$deferred = {modules, callback};
|
|
}
|
|
module.exports = function(provided) {
|
|
const ts = provided['typescript'];
|
|
if (!ts) {
|
|
throw new Error('Caller does not provide typescript module');
|
|
}
|
|
const results = {};
|
|
const resolvedModules = $deferred.modules.map(m => {
|
|
if (m === 'exports') {
|
|
return results;
|
|
}
|
|
if (m === 'typescript' || m === 'typescript/lib/tsserverlibrary') {
|
|
return ts;
|
|
}
|
|
return require(m);
|
|
});
|
|
$deferred.callback(...resolvedModules);
|
|
return results;
|
|
};
|