Skip to content

Commit

Permalink
fix: don't set target in tsconfig anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
manfredsteyer committed Nov 17, 2022
1 parent 3383707 commit 4da3496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/mf/src/schematics/mf/schematic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ export default function config(options: MfSchematicSchema): Rule {
function updateTsConfig(tree, tsConfigName: string) {
const tsConfig = json5.parse(tree.read(tsConfigName).toString('utf-8'));
const target = tsConfig.compilerOptions.target as string;
let targetVersion = 0;
let targetVersion = 2022;

if (
target &&
Expand Down

0 comments on commit 4da3496

Please sign in to comment.