From f3bfe3da5559c8d5ae08864e27adeabd105343de Mon Sep 17 00:00:00 2001 From: IWANABETHATGUY Date: Tue, 12 Dec 2023 16:34:54 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20add=20some=20field=20do?= =?UTF-8?q?c=20for=20TsconfigOptions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- napi/src/options.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/napi/src/options.rs b/napi/src/options.rs index cc379af..462dd4a 100644 --- a/napi/src/options.rs +++ b/napi/src/options.rs @@ -182,8 +182,8 @@ pub struct TsconfigOptions { /// * an absolute path to the configuration file. pub config_file: String, /// Support for Typescript Project References. - /// For the type TsconfigReferences - /// + /// alias type for [oxc_resolver::TsconfigReferences], cause napi does't support structured + /// enum #[napi(ts_type = "'disabled'| 'auto' | 'Array'")] pub references: Either>, }