Skip to content

Commit

Permalink
(chore) Tweak tsconfig lib targets (#227)
Browse files Browse the repository at this point in the history
Removes extraneous lib targets. `dom`, `dom.iterable`, and `esnext` are sufficient.
  • Loading branch information
denniskigen authored Nov 22, 2024
1 parent 47354a7 commit 29a6b36
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,20 @@
"jsx": "react",
"lib": [
"dom",
"es5",
"scripthost",
"es2015",
"es2015.promise",
"es2016.array.include",
"es2018",
"es2020",
"es2021",
"es2022"
"dom.iterable",
"esnext"
],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"paths": {
"@openmrs/*": ["./node_modules/@openmrs/*"],
"__mocks__": ["./__mocks__"],
"tools": ["./tools"],
"tools": ["./tools"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strictNullChecks": true,
"target": "esnext",
"target": "esnext"
}
}

0 comments on commit 29a6b36

Please sign in to comment.