Skip to content

Commit 2922bd5

Browse files
committed
Fix node_modules exclude
1 parent ed1eb2b commit 2922bd5

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
@@ -532,7 +532,7 @@ namespace ts {
532532
}
533533
else {
534534
// by default exclude node_modules, and any specificied output directory
535-
exclude = ["./node_modules"]
535+
exclude = ["node_modules"]
536536
let outDir = json["compilerOptions"] && json["compilerOptions"]["outDir"];
537537
if(outDir) {
538538
exclude.push(outDir);

0 commit comments

Comments
 (0)