Commit f5c1617
authored
Fix ES module import to use .js extension (#33)
The import of './common' was missing the .js extension, which is required
in strict ES module environments. While TypeScript and development tools
handle this gracefully, the compiled output fails when consumed by other
ES module projects.
This fixes the import to use './common.js' as required by ES module spec.1 parent 3e44b02 commit f5c1617
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
0 commit comments