File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/angular/src/builders/webpack-dev-server Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,13 @@ import type { Schema } from './schema';
1414import { createTmpTsConfigForBuildableLibs } from '../utilities/buildable-libs' ;
1515import { from } from 'rxjs' ;
1616import { switchMap } from 'rxjs/operators' ;
17+ import { getRootTsConfigPath } from 'nx/src/utils/typescript' ;
1718
1819export function executeWebpackDevServerBuilder (
1920 rawOptions : Schema ,
2021 context : import ( '@angular-devkit/architect' ) . BuilderContext
2122) {
22- process . env . NX_TSCONFIG_PATH = joinPathFragments (
23- context . workspaceRoot ,
24- 'tsconfig.base.json'
25- ) ;
23+ process . env . NX_TSCONFIG_PATH = getRootTsConfigPath ( ) ;
2624
2725 const options = normalizeOptions ( rawOptions ) ;
2826
You can’t perform that action at this time.
0 commit comments