This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit d11614b7f7b69c5c244aff3d118814726ede3ccb Author: Randall Leeds <[email protected]> AuthorDate: Sat Apr 3 21:53:02 2021 -0700 Enable more recommended TypeScript configurations --- tsconfig.base.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.base.json b/tsconfig.base.json index 9a76326..0c8a2ae 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -6,6 +6,7 @@ "downlevelIteration": true, "emitDeclarationOnly": true, "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, "isolatedModules": true, "lib": [ "dom", @@ -13,6 +14,7 @@ "es2020" ], "moduleResolution": "node", + "skipLibCheck": true, "strict": true, "target": "es2017" }
