From d11e3f616b2c25c46965d48348a50a06d405a953 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 10 Aug 2023 04:48:02 +0100 Subject: [PATCH] chore: move tsconfig to project root, add ES2020/DOM libs --- OliverBooth/tsconfig.json | 5 ----- tsconfig.json | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 OliverBooth/tsconfig.json create mode 100644 tsconfig.json diff --git a/OliverBooth/tsconfig.json b/OliverBooth/tsconfig.json deleted file mode 100644 index 05994e0..0000000 --- a/OliverBooth/tsconfig.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "compilerOptions": { - "target": "es2020" - } -} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..778d497 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,6 @@ +{ + "compilerOptions": { + "lib": ["ES2020", "DOM"], + "target": "ES2020" + } +} \ No newline at end of file