From 1804309d01ce84ba14faf3cb2c5783a470b3eae7 Mon Sep 17 00:00:00 2001 From: Zafkiel Date: Fri, 21 Mar 2025 01:46:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BB=84=E4=BB=B6AnalogClock?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Zafkiel --- compiler/tsconfig.esm.json | 6 ++++++ compiler/tsconfig.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/compiler/tsconfig.esm.json b/compiler/tsconfig.esm.json index 690a04afa..dcde8484a 100755 --- a/compiler/tsconfig.esm.json +++ b/compiler/tsconfig.esm.json @@ -161,6 +161,7 @@ "components": [ "AbilityComponent", "AlphabetIndexer", + "AnalogClock", "Animator", "Badge", "Blank", @@ -288,6 +289,11 @@ "type": "AlphabetIndexerAttribute", "instance": "AlphabetIndexerInstance" }, + { + "name": "AnalogClock", + "type": "AnalogClockAttribute", + "instance": "AnalogClockInstance" + }, { "name": "Animator", "type": "AnimatorAttribute", diff --git a/compiler/tsconfig.json b/compiler/tsconfig.json index 271f6590a..80fdbe7cc 100644 --- a/compiler/tsconfig.json +++ b/compiler/tsconfig.json @@ -161,6 +161,7 @@ "components": [ "AbilityComponent", "AlphabetIndexer", + "AnalogClock", "Animator", "Badge", "Blank", @@ -296,6 +297,11 @@ "type": "AlphabetIndexerAttribute", "instance": "AlphabetIndexerInstance" }, + { + "name": "AnalogClock", + "type": "AnalogClockAttribute", + "instance": "AnalogClockInstance" + }, { "name": "Animator", "type": "AnimatorAttribute", -- Gitee