Skip to content

Commit

Permalink
fix(@schematics/angular): regression tsconfig.json
Browse files Browse the repository at this point in the history
Regression in tsconfig.json set `"outDir": "./dist/out-tsc"` for problems in VSCode TS(2307) when building library referred in tsconfig "paths" 
 
Closes: #16708
  • Loading branch information
dmorosinotto committed Jan 19, 2020
1 parent 49de0a6 commit 0e318ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist",<% if (strict) { %>
"outDir": "/dist/out-tsc",<% if (strict) { %>
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
Expand Down

0 comments on commit 0e318ae

Please sign in to comment.