From fc2bd717023b6a8bf2e50bb8872fc726529df529 Mon Sep 17 00:00:00 2001 From: daylily Date: Mon, 7 Apr 2025 19:55:28 -0400 Subject: [PATCH] webapp: turn off checkJs in tsconfig --- webapp/tsconfig.app.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/webapp/tsconfig.app.json b/webapp/tsconfig.app.json index 4fcd2a6..74c6f6a 100644 --- a/webapp/tsconfig.app.json +++ b/webapp/tsconfig.app.json @@ -5,14 +5,8 @@ "useDefineForClassFields": true, "module": "ESNext", "resolveJsonModule": true, - /** - * Typecheck JS in `.svelte` and `.js` files by default. - * Disable checkJs if you'd like to use dynamic types in JS. - * Note that setting allowJs false does not prevent the use - * of JS in `.svelte` files. - */ "allowJs": true, - "checkJs": true, + "checkJs": false, "isolatedModules": true, "moduleDetection": "force",