From 67d0db43f394a1a3651bd32ce70b3ecc9341369a Mon Sep 17 00:00:00 2001 From: Jongsun Suh <34228073+MajorLift@users.noreply.github.com> Date: Tue, 26 Sep 2023 11:15:35 -0700 Subject: [PATCH] Restore TypeScript compiler options that are not enabled in the core monorepo --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 64ff673..2ffb2fe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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/**/*"] }