mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
0dc89c0a79
This commit stabilises import maps by removing requirement on "--unstable" flag when "--import-map" flag is used.
739 B
739 B
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@$STD_VERSION/fmt/"
}
}
color.ts
import { red } from "fmt/colors.ts";
console.log(red("hello world"));
Then:
$ deno run --import-map=import_map.json color.ts
To use starting directory for absolute imports:
import_map.json
{
"imports": {
"/": "./"
}
}
main.ts
import { MyUtil } from "/util.ts";
You may map a different directory: (eg. src)
import_map.json
{
"imports": {
"/": "./src/"
}
}