From f968f8e2f5d318064096128a05b10a2a2a1171c2 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Fri, 21 Aug 2020 08:49:23 -0700 Subject: [PATCH] Add a top-level tsconfig.json The reason to add this is that I am getting misleadings errors in vscode that this file is missing. By adding this file, I no longer see these errors. --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..53e1852f3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "./extensions/ql-vscode/tsconfig.json" +}