Skip to content

Commit b93d112

Browse files
committed
Fix node_modules exclude
(cherry picked from commit 2922bd5)
1 parent e446297 commit b93d112

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/commandLineParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ namespace ts {
558558
}
559559
else {
560560
// by default exclude node_modules, and any specificied output directory
561-
exclude = ["./node_modules"]
561+
exclude = ["node_modules"]
562562
let outDir = json["compilerOptions"] && json["compilerOptions"]["outDir"];
563563
if(outDir) {
564564
exclude.push(outDir);

0 commit comments

Comments
 (0)