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/**/*"] }