From 1373c7a7b49b311dfb74bf7fbf81cabc5a133fbe Mon Sep 17 00:00:00 2001 From: vincanger <70215737+vincanger@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:00:02 +0100 Subject: [PATCH] Update tsconfig.json --- app/tsconfig.json | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/app/tsconfig.json b/app/tsconfig.json index 7c3c7a6..66e8079 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -5,17 +5,12 @@ // compiler. Proper TS compiler configuration in Wasp is coming soon :) { "compilerOptions": { - "forceConsistentCasingInFileNames": false, // JSX support "jsx": "preserve", "strict": true, // Allow default imports. "esModuleInterop": true, - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "types": [ // This is needed to properly support Vitest testing with jest-dom matchers. @@ -27,10 +22,7 @@ // compilation, the following directory doesn't exist. We need to specify // it to prevent this error: // https://stackoverflow.com/questions/42609768/typescript-error-cannot-write-file-because-it-would-overwrite-input-file - "outDir": "phantom", + "outDir": "phantom" }, - "exclude": [ - "phantom" - ], - + "exclude": ["phantom"] }