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 6935bfcffa467d76b3bc097ab64cf7043ab21e03 Author: Randall Leeds <[email protected]> AuthorDate: Mon Aug 3 19:02:40 2020 -0700 Make sure selector is built before dom --- packages/dom/tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/dom/tsconfig.json b/packages/dom/tsconfig.json index afffb53..66c98ee 100644 --- a/packages/dom/tsconfig.json +++ b/packages/dom/tsconfig.json @@ -2,5 +2,10 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { "lib": ["dom", "dom.iterable", "esnext"] - } + }, + "references": [ + { + "path": "../selector/tsconfig.json" + } + ] }
