File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -382,7 +382,6 @@ function createWatchFactory(
382
382
}
383
383
return result ;
384
384
}
385
- `` ;
386
385
387
386
function invokeRecursiveDirectoryWatcher (
388
387
directory : string ,
@@ -800,10 +799,14 @@ export function makeSolutionBuilderHost(
800
799
// The `configFilePath` is the same value that is used as the `project` parameter of
801
800
// `getCustomtransformers` below.
802
801
const project = options . configFilePath ;
803
- if ( typeof project === " string" ) {
802
+ if ( typeof project === ' string' ) {
804
803
// Custom transformers need a reference to the `typescript.Program`, that reference is
805
804
// unavailable during the the `getCustomTransformers` callback below.
806
- const transformers = getCustomTransformers ( instance . loaderOptions , result . getProgram ( ) , result . getProgram ) ;
805
+ const transformers = getCustomTransformers (
806
+ instance . loaderOptions ,
807
+ result . getProgram ( ) ,
808
+ result . getProgram
809
+ ) ;
807
810
customTransformers . set ( project , transformers ) ;
808
811
}
809
812
}
You can’t perform that action at this time.
0 commit comments