Filip SemanF
Denoβ€’3y agoβ€’
21 replies
Filip Seman

Is possible to run nodejs (typescript) project with esm modules?

I'm trying to run small nodejs project with esm modules. Simple example

// foo.ts
import { bar } from './bar.js';

// bar.ts
exportconst bar = 'bar';


i'm getting error: Module not found "file:///tmp/tmp.LPU7JDdIZK/bar.js".
Was this page helpful?