File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed
Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change 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.
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}
You can’t perform that action at this time.
0 commit comments