-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
16 lines (16 loc) · 851 Bytes
/
deno.json
File metadata and controls
16 lines (16 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"tasks": {
"start": "deno run --allow-net --allow-read=.,/tmp --allow-write=tapir,/tmp --allow-env=DENO_DEPLOYMENT_ID tapir.ts",
"password-reset": "deno run --allow-read=.,/tmp --allow-write=tapir,/tmp --allow-env=DENO_DEPLOYMENT_ID tapir.ts password-reset",
"dev": "deno run --allow-read=resources/buildMeta.json --allow-write=resources/buildMeta.json updateBuildDate.ts && deno run --allow-net --allow-read=.,/tmp --allow-write=tapir,/tmp --allow-env=DENO_DEPLOYMENT_ID --cert test/e2e/certs/TestRootCA.pem --watch tapir.ts",
"test": "deno test --allow-read=.,/tmp --allow-write=/tmp --allow-net --allow-env"
},
"importMap": "./import_map.json",
"compilerOptions": {
"types": ["./lib/jsx.d.ts"],
"jsx": "react-jsx",
"jsxImportSource": "$jsx",
"emitDecoratorMetadata": true,
"lib": ["deno.worker"]
}
}