From 489ab057e8d553e0b2a970587d78da91904158e2 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Tue, 24 Jan 2023 16:08:09 -0800 Subject: [PATCH] Add tsconfig to try to fix cypress build error. --- tsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..98dc31bd --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "strict": true, + "target": "ESNext", + "module": "NodeNext", + "moduleResolution": "NodeNext" + } +}