poml
poml copied to clipboard
Broken type depdendencies
according to the package json:
{
"name": "pomljs",
"version": "0.0.7",
"description": "Prompt Orchestration Markup Language",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
}
yet the .d.ts files were not generated properly.
UPDATE
it's probably about the rollup config. I might make a PR for fixing the config later on
I'm not a typescript expert, and I might have misunderstood -- it might be not how rollup should be used.
Please submit a PR if you are willing to!