Skip to content

Commit 0936a03

Browse files
author
Dimitar Tachev
authored
fix: stop syncing TS files outside the app folder (e.g. plugins in node_modules)
1 parent 36a2bf7 commit 0936a03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/before-watchPatterns.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = function (hookArgs) {
22
if (hookArgs.liveSyncData && !hookArgs.liveSyncData.bundle) {
33
return (args, originalMethod) => {
44
return originalMethod(...args).then(originalPatterns => {
5-
originalPatterns.push("!app/**/*.ts");
5+
originalPatterns.push("!**/*.ts");
66

77
return originalPatterns;
88
});

0 commit comments

Comments
 (0)