From 3b257dc7b2419dca1d2a65ff7d6a89556c9c5895 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 25 Jan 2026 18:13:17 -0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20TypeSc?= =?UTF-8?q?ript=20compiler=20settings=20to=20enforce=20stricter=20type-che?= =?UTF-8?q?cking=20and=20modernize=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 0000000..237b995 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "rootDir": "src", + "outDir": "dist" + }, + "include": ["src/**/*"] +}