From 79c672424e3183bb0b8e45c4992a92dd3f55c1fa Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Wed, 18 Oct 2017 15:32:24 -0700 Subject: [PATCH] Fix lint --- src/compiler/sys.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index c68292078c..3ed80fbad3 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -570,6 +570,7 @@ namespace ts { realpath }; } + function recursiveCreateDirectory(directoryPath: string, sys: System) { const basePath = getDirectoryPath(directoryPath); const shouldCreateParent = basePath !== "" && directoryPath !== basePath && !sys.directoryExists(basePath);