commit | 01ae87caba6a615a0b83ae986929cf69ac24709d | [log] [tgz] |
---|---|---|
author | Adrià Vilanova Martínez <me@avm99963.com> | Sat May 11 12:42:52 2024 +0200 |
committer | Adrià Vilanova <me@avm99963.com> | Thu May 16 18:09:34 2024 +0000 |
tree | c643b79dbb56b5d67eeca2c252386a2ebe468972 | |
parent | 92be02aa3def462aab800c44f3b523d1278f2dbd [diff] [blame] |
fix: exclude output files tsserver misbehaved because output files were also handled by the LSP. This CL fixes this issue by excluding the output files. Change-Id: Ia685b2540682d2d221bb708b632615dba381ebd4
diff --git a/tsconfig.json b/tsconfig.json index ae31377..8a9d6e5 100644 --- a/tsconfig.json +++ b/tsconfig.json
@@ -14,5 +14,6 @@ "compilerOptions": { "module": "commonjs" } - } + }, + "exclude": ["node_modules", "dist"] }