summaryrefslogtreecommitdiff
path: root/tests/testdata/run/with_package_json/with_stop/some/nested/dir/main.ts
blob: 6016470a1067d45c666eedb5e2ea2fdb23a96597 (plain)
1
2
3
4
5
6
// This import should fail, because `package.json` is not discovered, as we're
// stopping the discovery when encountering `deno.json`.
import chalk from "chalk";

console.log("ok");
console.log(chalk);