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": { 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": { 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": { "*": {