Skip to content

Commit

Permalink
Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vincanger committed Feb 26, 2024
1 parent e49b1da commit 1373c7a
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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"]
}

0 comments on commit 1373c7a

Please sign in to comment.