From 2bed150d288cc979956a38339b4435b900c3d9e5 Mon Sep 17 00:00:00 2001 From: Chris Krycho Date: Mon, 28 Aug 2023 17:21:52 -0600 Subject: [PATCH] Configure TypeScript (with maximum strictness) --- tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..751ae7c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "@tsconfig/strictest", + "compilerOptions": { + "outFile": "main.js" + } +}