function bar() {
console.log("bar() is called");
}
export {bar} from "./bar"
export { bar } from "./bar";
//# sourceURL=./foo.ts
Uncaught (in promise) TypeError: Error resolving module specifier “./bar”. Relative module specifiers must start with “./”, “../” or “/”.
bar.ts:
foo.ts:
Result: