From 02f7053dac57e6c3605430c6041419339294a74d Mon Sep 17 00:00:00 2001 From: AJ Banerjee Date: Sun, 3 May 2026 22:45:28 -0700 Subject: [PATCH] fix(hono): remove TS5-only compiler option from boilerplate Drop verbatimModuleSyntax so local vercel dev toolchains that parse tsconfig with TypeScript 4.9 no longer fail with TS5023 before serving the example. --- framework-boilerplates/hono/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/framework-boilerplates/hono/tsconfig.json b/framework-boilerplates/hono/tsconfig.json index b55223e0d5..22fad560e4 100644 --- a/framework-boilerplates/hono/tsconfig.json +++ b/framework-boilerplates/hono/tsconfig.json @@ -3,7 +3,6 @@ "target": "ESNext", "module": "NodeNext", "strict": true, - "verbatimModuleSyntax": true, "skipLibCheck": true, "types": [ "node"