Skip to content

Commit

Permalink
more config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rushtong committed Nov 17, 2023
1 parent e45bff6 commit 7c92a6d
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": false,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"jsx": "react",
"esModuleInterop": true,
"strict": true,
"target": "es5",
"allowJs": true,
"checkJs": true,
"target": "es2022",
"useUnknownInCatchVariables": true
},
"include": [
"src"
]
}

0 comments on commit 7c92a6d

Please sign in to comment.