mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 22:09:02 -05:00
ef64585d13
This change aims to replace all relative import specifiers targeted at `tests/util/std` with mapped ones (using a `deno.json` file). Towards updating the `std` git submodule.
14 lines
408 B
JSON
14 lines
408 B
JSON
{
|
|
"imports": {
|
|
"@std/": "../../../util/std/",
|
|
|
|
"bare": "https://example.com/",
|
|
"https://example.com/rewrite": "https://example.com/rewritten",
|
|
|
|
"1": "https://example.com/PASS-1",
|
|
"null": "https://example.com/PASS-null",
|
|
"undefined": "https://example.com/PASS-undefined",
|
|
"[object Object]": "https://example.com/PASS-object",
|
|
"npm:preact": "https://example.com/preact"
|
|
}
|
|
}
|