From febb9fb256260110e7024ced88bc6f0740242f9b Mon Sep 17 00:00:00 2001 From: hypercross Date: Fri, 3 Apr 2026 19:16:11 +0800 Subject: [PATCH] chore: fix ts output --- packages/sample-game/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/sample-game/tsconfig.json b/packages/sample-game/tsconfig.json index 9c679b9..d7f3323 100644 --- a/packages/sample-game/tsconfig.json +++ b/packages/sample-game/tsconfig.json @@ -6,7 +6,11 @@ "@/*": ["src/*"] }, "jsx": "react-jsx", - "jsxImportSource": "preact" + "jsxImportSource": "preact", + "noEmit": true, + "declaration": false, + "declarationMap": false, + "sourceMap": false }, "include": ["src/**/*"] }