File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/typescript-reporter/reporter Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import * as ts from 'typescript' ;
2- import { normalize } from 'path' ;
2+ import { normalize , dirname } from 'path' ;
33import { TypeScriptConfigurationOverwrite } from '../TypeScriptConfigurationOverwrite' ;
44import { Dependencies } from '../../reporter' ;
55
@@ -63,14 +63,14 @@ function getDependenciesFromTypeScriptConfiguration(
6363 const parsedConfiguration = parseTypeScriptConfiguration (
6464 typescript ,
6565 configFile ,
66- configFileContext ,
66+ dirname ( configFile ) ,
6767 { } ,
6868 parseConfigFileHost
6969 ) ;
7070 const childDependencies = getDependenciesFromTypeScriptConfiguration (
7171 typescript ,
7272 parsedConfiguration ,
73- configFileContext ,
73+ dirname ( configFile ) ,
7474 parseConfigFileHost ,
7575 [ ...processedConfigFiles , configFile ]
7676 ) ;
You can’t perform that action at this time.
0 commit comments