From d84d624a0baf4ac1a035f60611f156ab34b39cbc Mon Sep 17 00:00:00 2001 From: i582 <51853996+i582@users.noreply.github.com> Date: Sun, 23 Feb 2025 20:18:57 +0400 Subject: [PATCH] fix(indexing): don't ignore too many files in Tact compiler repo Fixes #303 --- server/src/index-root.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/server/src/index-root.ts b/server/src/index-root.ts index afca2104..fffa6870 100644 --- a/server/src/index-root.ts +++ b/server/src/index-root.ts @@ -29,9 +29,18 @@ export class IndexRoot { ? [] : [ "**/node_modules/**", + "**/cli/tact/output/**", + "**/dist/**", + "**/test/failed/**", + "**/grammar/**/test/**", + "**/test/compilation-failed/**", + "**/pretty-printer-output/**", + "**/types/test/**", + "**/renamer-expected/**", + "**/test/codegen/**", + "**/test/contracts/**", "**/test/e2e-emulated/**", "**/__testdata/**", - "**/test/**", "**/test-failed/**", "**/types/stmts-failed/**", "**/types/stmts/**",