Skip to content

Commit 1373c7a

Browse files
committed
Update tsconfig.json
1 parent e49b1da commit 1373c7a

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

app/tsconfig.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,12 @@
55
// compiler. Proper TS compiler configuration in Wasp is coming soon :)
66
{
77
"compilerOptions": {
8-
"forceConsistentCasingInFileNames": false,
98
// JSX support
109
"jsx": "preserve",
1110
"strict": true,
1211
// Allow default imports.
1312
"esModuleInterop": true,
14-
"lib": [
15-
"dom",
16-
"dom.iterable",
17-
"esnext"
18-
],
13+
"lib": ["dom", "dom.iterable", "esnext"],
1914
"allowJs": true,
2015
"types": [
2116
// This is needed to properly support Vitest testing with jest-dom matchers.
@@ -27,10 +22,7 @@
2722
// compilation, the following directory doesn't exist. We need to specify
2823
// it to prevent this error:
2924
// https://stackoverflow.com/questions/42609768/typescript-error-cannot-write-file-because-it-would-overwrite-input-file
30-
"outDir": "phantom",
25+
"outDir": "phantom"
3126
},
32-
"exclude": [
33-
"phantom"
34-
],
35-
27+
"exclude": ["phantom"]
3628
}

0 commit comments

Comments
 (0)