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 a31443d31075641f3c685063a92469582b25cca2 Author: Randall Leeds <[email protected]> AuthorDate: Sat Apr 3 19:51:22 2021 -0700 Add support module format interoperability Update the TypeScript configuration so that if the project ever compiles using TypeScript instead of babel it will emit proper interoperability code. --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index e9f79ca..9a76326 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,11 +1,11 @@ { "compilerOptions": { - "allowSyntheticDefaultImports": true, "composite": true, "declaration": true, "declarationMap": true, "downlevelIteration": true, "emitDeclarationOnly": true, + "esModuleInterop": true, "isolatedModules": true, "lib": [ "dom",
