From c3220a35bfbcefb37d5bc90ba5beeda40a3df9a5 Mon Sep 17 00:00:00 2001 From: Erik Brinkman Date: Wed, 26 Jan 2022 20:52:23 -0500 Subject: [PATCH] make ts incremental --- .gitignore | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 6b86b11..45ad72a 100755 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ # Typescript # ############## /src/**/*.js +/tsconfig.tsbuildinfo diff --git a/tsconfig.json b/tsconfig.json index 9688115..5e0a981 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,7 @@ "isolatedModules": true, "noEmit": true, "strict": true, + "incremental": true, "typeRoots": ["./types", "./node_modules/@types"] }, "include": ["src", "test"]