From 6634a40743b32696801b863c90bab06de5b04d78 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 00:58:59 +0000 Subject: [PATCH] Fix form submission error Co-authored-by: Ichitux <17677572+Ichitux@users.noreply.github.com> --- tsconfig.app.json | 48 +++++++++++++++++++++++++---------------------- tsconfig.json | 30 ++++++++++++++++++----------- 2 files changed, 45 insertions(+), 33 deletions(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 3add82f..51f581d 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,31 +1,35 @@ { "compilerOptions": { - "types": ["vitest/globals"], - "target": "ES2020", - "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "module": "ESNext", - "skipLibCheck": true, - - /* Bundler mode */ - "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, - "moduleDetection": "force", - "noEmit": true, "jsx": "react-jsx", - - /* Linting */ - "strict": false, + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], + "module": "ESNext", + "moduleDetection": "force", + "moduleResolution": "bundler", + "noEmit": true, + "noFallthroughCasesInSwitch": false, + "noImplicitAny": false, "noUnusedLocals": false, "noUnusedParameters": false, - "noImplicitAny": false, - "noFallthroughCasesInSwitch": false, - - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] - } + "@/*": [ + "./src/*" + ] + }, + "skipLibCheck": true, + "strict": false, + "target": "ES2020", + "types": [ + "vitest/globals" + ], + "useDefineForClassFields": true }, - "include": ["src"] -} + "include": [ + "src" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 2518773..6b68d80 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,24 @@ { - "files": [], - "references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }], "compilerOptions": { - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"] - }, - "noImplicitAny": false, - "noUnusedParameters": false, - "skipLibCheck": true, "allowJs": true, + "noImplicitAny": false, "noUnusedLocals": false, + "noUnusedParameters": false, + "paths": { + "@/*": [ + "./src/*" + ] + }, + "skipLibCheck": true, "strictNullChecks": false - } -} + }, + "files": [], + "references": [ + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file