From 311c329f878cfe06bd2b8f43f1653c20b5313f52 Mon Sep 17 00:00:00 2001 From: GRayHook Date: Wed, 17 Jun 2026 09:53:47 +0700 Subject: [PATCH] =?UTF-8?q?Phase=200:=20add=20tsconfig.json=20=E2=80=94=20?= =?UTF-8?q?strict=20typecheck=20aligned=20with=20jiti=20ESM=20load.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use ESNext/Bundler resolution so extension imports match Pi's jiti runtime. Co-authored-by: Cursor --- tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..824d239 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": ["ES2022"], + "module": "ESNext", + "moduleResolution": "Bundler", + "strict": true, + "noEmit": true, + "skipLibCheck": true, + "isolatedModules": true + }, + "include": ["src/**/*.ts", "test/**/*.ts"] +}