File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,10 @@ module RWC {
77
77
let tsconfigFile = ts . forEach ( ioLog . filesRead , f => isTsConfigFile ( f ) ? f : undefined ) ;
78
78
if ( tsconfigFile ) {
79
79
let tsconfigFileContents = getHarnessCompilerInputUnit ( tsconfigFile . path ) ;
80
- let configParseResult = ts . parseConfigFile ( tsconfigFileContents . content , Harness . IO , ts . getDirectoryPath ( tsconfigFile . path ) ) ;
80
+ let parsedTsconfigFileContents = ts . parseConfigFileText ( tsconfigFile . path , tsconfigFileContents . content ) ;
81
+ let configParseResult = ts . parseConfigFile ( parsedTsconfigFileContents . config , Harness . IO , ts . getDirectoryPath ( tsconfigFile . path ) ) ;
81
82
fileNames = configParseResult . fileNames ;
83
+ opts . options = ts . extend ( opts . options , configParseResult . options ) ;
82
84
}
83
85
84
86
// Load the files
You can’t perform that action at this time.
0 commit comments