From 760df82f5288b54947c960c1f422d598b23444db Mon Sep 17 00:00:00 2001 From: Yiheng Date: Mon, 2 Dec 2024 03:30:16 +0800 Subject: [PATCH 1/3] export d.ts --- workflow-parser/package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/workflow-parser/package.json b/workflow-parser/package.json index 16045f62..1c240781 100644 --- a/workflow-parser/package.json +++ b/workflow-parser/package.json @@ -9,11 +9,13 @@ }, "exports": { ".": { - "import": "./dist/index.js" + "import": "./dist/index.js", + "types": "./dist/index.d.ts" }, "./*": { - "import": "./dist/*.js" - } + "import": "./dist/*.js", + "types": "./dist/*.d.ts" + }, }, "typesVersions": { "*": { From 3ac6a9400d161e388f9eac7dd8e3fb0c31469f1e Mon Sep 17 00:00:00 2001 From: Yiheng Date: Mon, 2 Dec 2024 03:32:47 +0800 Subject: [PATCH 2/3] export --- languageserver/package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/languageserver/package.json b/languageserver/package.json index 44cc621c..65ff3cb5 100644 --- a/languageserver/package.json +++ b/languageserver/package.json @@ -10,10 +10,12 @@ }, "exports": { ".": { - "import": "./dist/index.js" + "import": "./dist/index.js", + "types": "./dist/index.d.ts" }, "./*": { - "import": "./dist/*.js" + "import": "./dist/*.js", + "types": "./dist/*.d.ts" } }, "typesVersions": { From 95f2d3dc42ac1ee16e125f92ba7861f153bb6ff6 Mon Sep 17 00:00:00 2001 From: Yiheng Date: Mon, 2 Dec 2024 03:33:28 +0800 Subject: [PATCH 3/3] export d.ts --- expressions/package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/expressions/package.json b/expressions/package.json index 5b0078c8..e3f914c8 100755 --- a/expressions/package.json +++ b/expressions/package.json @@ -9,10 +9,12 @@ }, "exports": { ".": { - "import": "./dist/index.js" + "import": "./dist/index.js", + "types": "./dist/index.d.ts" }, "./*": { - "import": "./dist/*.js" + "import": "./dist/*.js", + "types": "./dist/*.d.ts" } }, "typesVersions": {