-
-
Notifications
You must be signed in to change notification settings - Fork 17
export for deno #1514
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Activity
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
we ship our source typescript, and the comiled javascript along with typehints.
lets also make this package work with deno's native typescxript support
example package.json
{ "name": "my-hybrid-package", "version": "1.0.0", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "deno": "./src/index.ts", "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } } }