Skip to content

Commit

Permalink
Merge pull request #42 from TeamPetPoison/tl/issue-41-update-ts-check…
Browse files Browse the repository at this point in the history
…-in-js

Update tsconfig in packages/client
  • Loading branch information
ranegray committed May 5, 2023
2 parents ffbcaab + 172d7aa commit 8034f04
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions packages/client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowJs": true, // TODO: make "false" once all files are converted to TS
"checkJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": false, // TODO: make "true" once all files are converted to TS
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": false, // TODO make "true" once all files are converted to TS
"target": "es5",
"paths": {
"@/*": ["./*"]
}
Expand Down

0 comments on commit 8034f04

Please sign in to comment.