From 3f9fa1e48810dab7b9a9792868be1dcdd438efa8 Mon Sep 17 00:00:00 2001 From: tveinfeld <67224311+tveinfeld@users.noreply.github.com> Date: Tue, 6 Apr 2021 18:17:15 +0300 Subject: [PATCH] chore(general): exclude generated ts files from watch list (#749) --- monowatch.config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monowatch.config.json b/monowatch.config.json index e16935a1b1..05b3f89b95 100644 --- a/monowatch.config.json +++ b/monowatch.config.json @@ -1,6 +1,6 @@ { "watch": ["**/*.ts", "**/*.scss"], - "ignore": ["*.d.ts", "*.css.ts", "*.autogenerated.*"], + "ignore": ["**/*.d.ts", "**/*.css.ts", "**/*.autogenerated.*"], "include_dependants": true, "abort_on_errors": true }