39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import * as ts from 'typescript/lib/tsserverlibrary';
|
|
import {NgLanguageService, PluginConfig} from './api';
|
|
|
|
export * from './api';
|
|
|
|
interface PluginModule extends ts.server.PluginModule {
|
|
create(createInfo: ts.server.PluginCreateInfo): NgLanguageService;
|
|
onConfigurationChanged?(config: PluginConfig): void;
|
|
}
|
|
|
|
const factory: ts.server.PluginModuleFactory = (tsModule): PluginModule => {
|
|
let plugin: PluginModule;
|
|
|
|
return {
|
|
create(info: ts.server.PluginCreateInfo): NgLanguageService {
|
|
const config: PluginConfig = info.config;
|
|
const bundleName = config.ivy ? 'ivy.js' : 'language-service.js';
|
|
plugin = require(`./bundles/${bundleName}`)(tsModule);
|
|
return plugin.create(info);
|
|
},
|
|
getExternalFiles(project: ts.server.Project): string[] {
|
|
return plugin?.getExternalFiles?.(project) ?? [];
|
|
},
|
|
onConfigurationChanged(config: PluginConfig): void {
|
|
plugin?.onConfigurationChanged?.(config);
|
|
},
|
|
};
|
|
};
|
|
|
|
module.exports = factory;
|