GitHub
Import maps
Deno supports import maps.
You can use import maps with the --import-map=<FILE> CLI flag.
Example:
import_map.json
{
"imports": {
"fmt/": "https://deno.land/std@0.137.0/fmt/"
}
}color.ts
import { red } from "fmt/colors.ts";
console.log(red("hello world"));Then:
$ deno run --import-map=import_map.json color.tsTo use your project root for absolute imports:
import_map.json
{
"imports": {
"/": "./",
"./": "./"
}
}main.ts
import { MyUtil } from "/util.ts";This causes import specifiers starting with / to be resolved relative to the
import map's URL or file path.