From 76cf2af1aa1311361b8405127c4af3195329d49e Mon Sep 17 00:00:00 2001 From: Alexander Marks Date: Mon, 13 Aug 2018 18:31:36 -0700 Subject: [PATCH] Use relative path module specifier in gen-tsd autoImport setting. An upcoming change to the type generator will assume that a module specifier that does not begin with "." is a bare module specifier. --- gen-tsd.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen-tsd.json b/gen-tsd.json index f73b47a84b..f1f2274bb1 100644 --- a/gen-tsd.json +++ b/gen-tsd.json @@ -15,7 +15,7 @@ "Polymer_PropertyEffects": "PropertyEffects" }, "autoImport": { - "interfaces": [ + "./interfaces": [ "PolymerElementPropertiesMeta", "PolymerElementProperties", "PolymerInit", @@ -32,7 +32,7 @@ "GestureRecognizer", "IdleDeadline" ], - "lib/utils/debounce.js": [ + "./lib/utils/debounce.js": [ "Debouncer" ] }