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 6616534a54364865bb2911cc7bf7d031f55ba501 Author: Randall Leeds <[email protected]> AuthorDate: Sat Apr 3 19:21:48 2021 -0700 Fix trailing comma in tsconfig.json TypeScript parses tsconfig.json files as JSON5, but it is nice to keep them as pure JSON. --- packages/apache-annotator/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/apache-annotator/tsconfig.json b/packages/apache-annotator/tsconfig.json index fd0b067..0ac1cf1 100644 --- a/packages/apache-annotator/tsconfig.json +++ b/packages/apache-annotator/tsconfig.json @@ -7,6 +7,6 @@ }, "references": [ { "path": "../dom" }, - { "path": "../selector" }, + { "path": "../selector" } ] }
