forked from unyt-org/uix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
20 lines (20 loc) · 810 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"imports": {
"datex-core-legacy" : "https://dev.cdn.unyt.org/unyt_core/datex.ts",
"datex-core-legacy/" : "https://dev.cdn.unyt.org/unyt_core/",
"unyt_tests/": "https://dev.cdn.unyt.org/unyt_tests/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "uix",
"lib": [
"deno.window",
"dom"
]
},
"tasks": {
"expose-uix": "deno run --import-map importmap.json -Aq --reload https://dev.cdn.unyt.org/uix/server/standalone-file-server.ts --import-map importmap.dev.json -w --port 4242",
"run-test-app": "cd .test-app && deno run -Aqr ../run.ts -blr --port 4201",
"generate-api-docs": "deno run -Aqr --import-map importmap.dev.json https://dev.cdn.unyt.org/doc-generator/run.ts --import-map importmap.dev.json --base ./ -m ./uix.ts --out ./docs/api"
}
}