System Information
- Aedes: 1.0.1
- NodeJS: 22.22.0
- OS: Ubuntu 22.04.5
- Arch: x86_64
Describe the bug
When TypeScript moduleResolution is set to "node16", I am unable to import items in the same way as the examples:
import { Aedes } from 'aedes'
and instead get the following typescript error:
Module '"aedes"' has no exported member 'Aedes'.
To Reproduce
Steps to reproduce the behavior:
- npm install aedes
- set TypeScript moduleResolution to "node16"
- Attempt to import Aedes
Expected behavior
Aedes should be properly imported.
Additional context
The issue is resolved if you switch moduleResolution to "bundler", but I presume this is still a bug as #1081 states it fixes this issue.
System Information
Describe the bug
When TypeScript moduleResolution is set to "node16", I am unable to import items in the same way as the examples:
import { Aedes } from 'aedes'and instead get the following typescript error:
Module '"aedes"' has no exported member 'Aedes'.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Aedes should be properly imported.
Additional context
The issue is resolved if you switch moduleResolution to "bundler", but I presume this is still a bug as #1081 states it fixes this issue.