From 21172b0b58958ba9e05112d74d2a482733e4781c Mon Sep 17 00:00:00 2001 From: Jordan Kiesel Date: Sun, 26 Apr 2026 22:34:16 -0600 Subject: [PATCH] chore: improve type checking --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 306a1893..9df295e3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { - "rootDir": "src", - "types": ["emscripten"], + "module": "esnext", + "types": ["emscripten", "mocha", "node"], "allowImportingTsExtensions": true, "declaration": true, "noEmit": true }, - "include": ["src"] + "include": ["scripts", "src", "test"] }