fix action package exports and build ESM library entrypoints.

emit real ESM runtime + declaration outputs for programmatic imports, align package exports/types with built files, and add a no-cjs policy note.

Made-with: Cursor
This commit is contained in:
Colin McDonnell
2026-04-12 19:49:21 +00:00
committed by pullfrog[bot]
parent 6541bdc4f4
commit 3c2f3722ff
4 changed files with 41 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"emitDeclarationOnly": true,
"declarationMap": false,
"outDir": "./dist"
},
"include": ["index.ts", "internal/index.ts"]
}