From e2afd2227190bc0736bfc6e6b61c0e0ad731ec75 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Fri, 30 Sep 2022 16:02:39 -0500 Subject: [PATCH] chore: add empty tsconfig to prevent TypeScript from crawling (#4937) Co-authored-by: Nate Moore --- tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..7704e13bc --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,5 @@ +// Yes this file is intentionally empty! +// --- +// Having a blank `tsconfig.json` file prevents TypeScript from crawling up your directory tree +// and possibly picking up a parent `tsconfig.json` (which, unsurprisingly, is very hard to debug) +{}