-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
24 lines (24 loc) · 852 Bytes
/
deno.json
File metadata and controls
24 lines (24 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"imports": {
"@concepts/": "./src/concepts/",
"@concepts": "./src/concepts/concepts.ts",
"@test-concepts": "./src/concepts/test_concepts.ts",
"@utils/": "./src/utils/",
"@engine": "./src/engine/mod.ts",
"@syncs": "./src/syncs/syncs.ts"
},
"tasks": {
"start": "deno run --allow-net --allow-write --allow-read --allow-sys --allow-env src/main.ts",
"concepts": "deno run --allow-net --allow-read --allow-sys --allow-env src/concept_server.ts --port 8000 --baseUrl /api",
"import": "deno run --allow-read --allow-write --allow-env src/utils/generate_imports.ts",
"build": "deno run import"
},
"lint": {
"rules": {
"exclude": [
"no-import-prefix",
"no-unversioned-import"
]
}
}
}