From 5282152dd1e87b3870b615340220dc9d66eaa1b9 Mon Sep 17 00:00:00 2001 From: Luke LaValva Date: Tue, 6 Feb 2024 15:21:55 -0800 Subject: [PATCH] fix: change tsconfig target & add skeleton taglib (#2090) --- marko.json | 3 ++- src/components/ebay-skeleton/marko.json | 4 ++++ tsconfig.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 src/components/ebay-skeleton/marko.json diff --git a/marko.json b/marko.json index 17e080b85..70c6ae978 100644 --- a/marko.json +++ b/marko.json @@ -4,6 +4,7 @@ "taglib-imports": [ "./src/components/ebay-icon/marko.json", "./src/components/ebay-star-rating/marko.json", - "./src/components/ebay-flag/marko.json" + "./src/components/ebay-flag/marko.json", + "./src/components/ebay-skeleton/marko.json" ] } diff --git a/src/components/ebay-skeleton/marko.json b/src/components/ebay-skeleton/marko.json new file mode 100644 index 000000000..b436ebf83 --- /dev/null +++ b/src/components/ebay-skeleton/marko.json @@ -0,0 +1,4 @@ +{ + "taglib-id": "ebayui-core-skeleton", + "tags-dir": "./components" +} diff --git a/tsconfig.json b/tsconfig.json index 90dba5f6c..b7e93db90 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,7 @@ "rootDir": "src", "skipLibCheck": true, "strict": true, - "target": "ESNext", + "target": "ES2015", "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo" } }