mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
576b20aa00
Closes https://github.com/denoland/deno/issues/21298. "npm:" specifiers are matched against import map entries and if no match is found they are passed through.
12 lines
372 B
JSON
12 lines
372 B
JSON
{
|
|
"imports": {
|
|
"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"
|
|
}
|
|
}
|