Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit b7a46a7

Browse files
committed
Update config
1 parent 1d1e822 commit b7a46a7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"editor.formatOnSave": true,
1515
},
1616
"deno.enable": true,
17-
"deno.unstable": false,
1817
"deno.lint": true,
1918
"deno.config": "./deno.dom.json",
2019
"deno.suggest.imports.hosts": {

commands/init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ export default async function (nameArg: string | undefined, template = "react")
9292
`${alephPkgUri}/types.d.ts`,
9393
],
9494
},
95+
"importMap": "import_map.json",
9596
"tasks": {
9697
"dev": `deno run -A ${alephPkgUri}/cli.ts dev`,
9798
"start": `deno run -A ${alephPkgUri}/cli.ts start`,
@@ -144,9 +145,8 @@ export default async function (nameArg: string | undefined, template = "react")
144145
};
145146
const settigns = {
146147
"deno.enable": true,
147-
"deno.unstable": true,
148+
"deno.lint": true,
148149
"deno.config": "./deno.json",
149-
"deno.importMap": "./import_map.json",
150150
"deno.suggest.imports.hosts": {
151151
"https://deno.land": true,
152152
"https://esm.sh": false,

deno.dom.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"jsx": "react-jsx",
1010
"jsxImportSource": "https://esm.sh/[email protected]"
1111
},
12-
"importMap": "./import_map.json",
12+
"importMap": "import_map.json",
1313
"fmt": {
1414
"files": {
1515
"exclude": [

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"jsx": "react-jsx",
44
"jsxImportSource": "https://esm.sh/[email protected]"
55
},
6-
"importMap": "./import_map.json",
6+
"importMap": "import_map.json",
77
"tasks": {
88
"test": "deno test -A --unstable --location=http://localhost",
99
"dev": "ALEPH_DEV=true deno run -A cli.ts dev --log-level=debug",

0 commit comments

Comments
 (0)