From aa99682aa247cadc6e6d95f12fce36af705d6630 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Wed, 15 Jun 2022 11:25:29 -0500 Subject: [PATCH] Add typescript config --- tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..7977e94 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "@tsconfig/node16/tsconfig.json", + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "strict": true, + "noImplicitAny": false, + "esModuleInterop": true, + } +}