Skip to content

Commit 4da3496

Browse files
committed
fix: don't set target in tsconfig anymore
1 parent 3383707 commit 4da3496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/mf/src/schematics/mf/schematic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ export default function config(options: MfSchematicSchema): Rule {
408408
function updateTsConfig(tree, tsConfigName: string) {
409409
const tsConfig = json5.parse(tree.read(tsConfigName).toString('utf-8'));
410410
const target = tsConfig.compilerOptions.target as string;
411-
let targetVersion = 0;
411+
let targetVersion = 2022;
412412

413413
if (
414414
target &&

0 commit comments

Comments
 (0)