summaryrefslogtreecommitdiff
path: root/tests/specs/check/npm_pkg_empty_main_entry/index.ts
blob: 45966c0245b0b9d30bf89e2086ece857ddee16be (plain)
1
2
3
4
5
// this package has an empty "main" entry in its package.json for both the package and @types/package
import { add } from "package";

const result: string = add(1, 2);
console.log(result);