diff options
Diffstat (limited to 'deno.json')
-rw-r--r-- | deno.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/deno.json b/deno.json new file mode 100644 index 0000000..e4ac711 --- /dev/null +++ b/deno.json @@ -0,0 +1,21 @@ +{ + "version": "0.0.1", + "tasks": { + "dev": "deno run --allow-net --allow-read --allow-write=. --deny-read=/proc/version --allow-env --allow-run --allow-sys=homedir,cpus,networkInterfaces,hostname,osRelease,uid --allow-ffi --unstable-cron --unstable-kv --unstable-bare-node-builtins --unstable-byonm npm:vite", + "build": "deno run --allow-net --allow-read --allow-write=. --deny-read=/proc/version --allow-env --allow-run --allow-sys=homedir,cpus,networkInterfaces,hostname,osRelease,uid --allow-ffi --unstable-cron --unstable-kv --unstable-bare-node-builtins --unstable-byonm npm:vite build", + "preview": "deno run --allow-net --allow-read=. --deny-read=/proc/version --allow-env --allow-sys=homedir,cpus,networkInterfaces,hostname,osRelease,uid --allow-ffi --unstable-cron --unstable-kv --unstable-bare-node-builtins --unstable-byonm npm:vite preview", + "serve": "deno run --allow-net --allow-read=. --deny-read=/proc/version main.ts" + }, + "importMap": "./import_map.json", + "license": "AGPL-3.0-or-later", + "fmt": { + "singleQuote": true + }, + "compilerOptions": { + "checkJs": true, + "strict": true + }, + "unstable": [ + "sloppy-imports" + ] +}
\ No newline at end of file |