Skip to content

Commit cbf12f0

Browse files
authoredSep 17, 2020
fix(core): read tsconfig.json instead of tsconfig.base.json (#3745)
1 parent 480c01d commit cbf12f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎packages/workspace/src/core/target-project-locator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { dirname, join } from 'path';
77

88
export class TargetProjectLocator {
99
private sortedWorkspaceProjects = [];
10-
private paths = parseJsonWithComments(this.fileRead(`./tsconfig.base.json`))
10+
private paths = parseJsonWithComments(this.fileRead(`./tsconfig.json`))
1111
?.compilerOptions?.paths;
1212
private cache = new Map<string, string>();
1313

0 commit comments

Comments
 (0)
Please sign in to comment.