-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The tsconfig.json currently uses moduleResolution: node
| "moduleResolution": "node", |
This should no longer be used in TypeScript:
It reflects the CommonJS module resolution algorithm as it existed in Node.js versions earlier than v12. It should no longer be used.
I think this is causing errors when importing as an NPM module from Deno, because imports should specify extensions, yet they do not with this module resolution
And the package.json specifies that this is an esmodule:
| "type": "module", |
Consider moving it to node16 or nodenext
haisum, avivkeller and potor10
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request