@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
31 lines (30 loc) • 1.05 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getWorkerConfig = void 0;
/**
* @license
* Copyright Google Inc. 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
*/
const path_1 = require("path");
const typescript_1 = require("./typescript");
function getWorkerConfig(wco) {
const { buildOptions } = wco;
if (!buildOptions.webWorkerTsConfig) {
return {};
}
if (typeof buildOptions.webWorkerTsConfig != 'string') {
throw new Error('The `webWorkerTsConfig` must be a string.');
}
const workerTsConfigPath = path_1.resolve(wco.root, buildOptions.webWorkerTsConfig);
const WorkerPlugin = require('worker-plugin');
return {
plugins: [new WorkerPlugin({
globalObject: false,
plugins: [typescript_1.getTypescriptWorkerPlugin(wco, workerTsConfigPath)],
})],
};
}
exports.getWorkerConfig = getWorkerConfig;
;