summaryrefslogtreecommitdiff
path: root/deno.json
diff options
context:
space:
mode:
authornetop://ウィビ <paul@webb.page>2026-04-11 14:24:49 -0700
committernetop://ウィビ <paul@webb.page>2026-04-11 14:24:49 -0700
commit8c34d810af95fae0ef846f54370a8c88bfab7123 (patch)
tree436beaf30f7b2b3f15741dd54a37e313964d1f7d /deno.json
initial commitHEADprimary
Diffstat (limited to 'deno.json')
-rw-r--r--deno.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/deno.json b/deno.json
new file mode 100644
index 0000000..4383d79
--- /dev/null
+++ b/deno.json
@@ -0,0 +1,17 @@
+{
+ "compilerOptions": {
+ "noImplicitAny": false
+ },
+ "exclude": ["dbschema/"],
+ "importMap": "import_map.json",
+ "lint": {
+ "rules": {
+ "exclude": ["no-explicit-any"]
+ }
+ },
+ "lock": false,
+ "tasks": {
+ "dev": "deno run --allow-env --allow-net --allow-read --allow-run --allow-write main.ts development",
+ "start": "deno run --allow-env --allow-net --allow-read --allow-run --allow-write main.ts"
+ }
+}