From b36ca0f7468a2beec65f412b396f5e7fbd8f2176 Mon Sep 17 00:00:00 2001 From: Dunkan <70066170+dcdunkan@users.noreply.github.com> Date: Mon, 19 Jun 2023 05:37:45 +0530 Subject: [PATCH] chore: new Deno configuration schema (#38) --- deno.jsonc | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 56132dfb..06cfb145 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,15 +1,11 @@ { "lock": false, "fmt": { - "options": { "proseWrap": "preserve" }, - "files": { - "exclude": ["./out/"] - } + "proseWrap": "preserve", + "exclude": ["./out/"] }, "lint": { - "files": { - "exclude": ["./out/"] - } + "exclude": ["./out/"] }, "tasks": { "example": "cd examples && deno run --allow-net --allow-read deno.ts", @@ -17,8 +13,6 @@ "dnt": "deno run --allow-env --allow-net --allow-read --allow-run --allow-write scripts/dnt.ts" }, "test": { - "files": { - "exclude": ["./out/"] - } + "exclude": ["./out/"] } }