angular-cli/packages/schematics/angular/migrations/update-10/update-module-and-target-compiler-options.ts

116 lines
3.7 KiB
TypeScript

/**
* @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
*/
import { dirname, join, normalize } from '@angular-devkit/core';
import { Rule, Tree } from '@angular-devkit/schematics';
import { JSONFile } from '../../utility/json-file';
import { getWorkspace } from '../../utility/workspace';
import { Builders } from '../../utility/workspace-models';
interface ModuleAndTargetReplamenent {
oldModule?: string;
newModule?: string | false;
oldTarget?: string;
newTarget?: string;
}
export default function (): Rule {
return async host => {
// Workspace level tsconfig
updateModuleAndTarget(host, 'tsconfig.base.json', {
oldModule: 'esnext',
newModule: 'es2020',
});
const workspace = await getWorkspace(host);
// Find all tsconfig which are refereces used by builders
for (const [, project] of workspace.projects) {
for (const [, target] of project.targets) {
// E2E builder doesn't reference a tsconfig but it uses one found in the root folder.
if (target.builder === Builders.Protractor && typeof target.options?.protractorConfig === 'string') {
const tsConfigPath = join(dirname(normalize(target.options.protractorConfig)), 'tsconfig.json');
updateModuleAndTarget(host, tsConfigPath, {
oldTarget: 'es5',
newTarget: 'es2018',
});
continue;
}
// Update all other known CLI builders that use a tsconfig
const tsConfigs = [
target.options || {},
...Object.values(target.configurations || {}),
]
.filter(opt => typeof opt?.tsConfig === 'string')
.map(opt => (opt as { tsConfig: string }).tsConfig);
const uniqueTsConfigs = [...new Set(tsConfigs)];
if (uniqueTsConfigs.length < 1) {
continue;
}
switch (target.builder as Builders) {
case Builders.Server:
uniqueTsConfigs.forEach(p => {
updateModuleAndTarget(host, p, {
oldModule: 'commonjs',
// False will remove the module
// NB: For server we no longer use commonjs because it is bundled using webpack which has it's own module system.
// This ensures that lazy-loaded works on the server.
newModule: false,
});
updateModuleAndTarget(host, p, {
newTarget: 'es2016',
});
});
break;
case Builders.Karma:
case Builders.Browser:
case Builders.NgPackagr:
uniqueTsConfigs.forEach(p => {
updateModuleAndTarget(host, p, {
oldModule: 'esnext',
newModule: 'es2020',
});
});
break;
}
}
}
};
}
function updateModuleAndTarget(host: Tree, tsConfigPath: string, replacements: ModuleAndTargetReplamenent) {
const json = new JSONFile(host, tsConfigPath);
if (json.error) {
return;
}
const { oldTarget, newTarget, newModule, oldModule } = replacements;
if (newTarget) {
const target = json.get(['compilerOptions', 'target']);
if ((typeof target === 'string' && (!oldTarget || oldTarget === target.toLowerCase())) || !target) {
json.modify(['compilerOptions', 'target'], newTarget);
}
}
if (newModule === false) {
json.remove(['compilerOptions', 'module']);
} else if (newModule) {
const module = json.get(['compilerOptions', 'module']);
if (typeof module === 'string' && oldModule === module.toLowerCase()) {
json.modify(['compilerOptions', 'module'], newModule);
}
}
}