/* --- path: tsconfig.json --- */ { "compilerOptions": { "allowJs": true } } /* --- path: lib/index.js --- */ /* --- path: src/foo.ts --- */ export const bar = 42; /* --- path: src/index.ts --- */ import { bar } from "./foo"; // ^ defined: 11