1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

docs(import_maps): Add trailing slash to ./src example (#8524)

Update docs to reflect behavior. If trailing slash is not provided, `deno run` will throw error `Package address targets must end with "/"`.
This commit is contained in:
Eric Zingeler 2020-11-27 10:33:43 -08:00 committed by GitHub
parent f60c80e1bd
commit d2b32a65a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,7 @@ You may map a different directory: (eg. src)
{
"imports": {
"/": "./src"
"/": "./src/"
}
}
```