Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Commit

Permalink
Restore TypeScript compiler options that are not enabled in the core …
Browse files Browse the repository at this point in the history
…monorepo
  • Loading branch information
MajorLift committed Sep 26, 2023
1 parent eecfb70 commit 67d0db4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"compilerOptions": {
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2020"],
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": true,
"noErrorTruncation": true,
"noUncheckedIndexedAccess": true,
"strict": true,
"target": "es6"
"target": "es2017"
},
"exclude": ["./dist/**/*"]
}

0 comments on commit 67d0db4

Please sign in to comment.