Skip to content

Commit 0e318ae

Browse files
authored
fix(@schematics/angular): regression tsconfig.json
Regression in tsconfig.json set `"outDir": "./dist/out-tsc"` for problems in VSCode TS(2307) when building library referred in tsconfig "paths" Closes: #16708
1 parent 49de0a6 commit 0e318ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/schematics/angular/workspace/files/tsconfig.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compileOnSave": false,
33
"compilerOptions": {
44
"baseUrl": "./",
5-
"outDir": "./dist",<% if (strict) { %>
5+
"outDir": "/dist/out-tsc",<% if (strict) { %>
66
"noImplicitAny": true,
77
"noImplicitReturns": true,
88
"noImplicitThis": true,

0 commit comments

Comments
 (0)