We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa3bde commit bd2944cCopy full SHA for bd2944c
2 files changed
deno.jsonc
@@ -2,9 +2,7 @@
2
"tasks": {
3
"dev": "deno run --unstable --allow-read --allow-write --allow-env --allow-net --no-prompt --watch main.ts",
4
"test": "deno test --unstable --allow-read --allow-write .",
5
+ "production": "deno run --unstable --allow-read --allow-write --allow-env --allow-net --no-prompt main.ts",
6
},
- "imports": {
7
- "oak/": "https://deno.land/x/oak@v12.1.0/",
8
- "std/": "https://deno.land/std@0.176.0/",
9
- },
+ "importMap": "./import_map.json",
10
}
import_map.json
@@ -0,0 +1,6 @@
1
+{
+ "imports": {
+ "oak/": "https://deno.land/x/oak@v12.1.0/",
+ "std/": "https://deno.land/std@0.176.0/"
+ }
+}
0 commit comments