From 6628ad1e815617c7c8febaeb90be3852c5d7a43e Mon Sep 17 00:00:00 2001 From: IanKulin Date: Thu, 25 Sep 2025 21:17:35 +0800 Subject: [PATCH] add deno extension and config --- .vscode/settings.json | 6 +++++- deno.json | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 3628776..d15b4b0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,7 @@ { - "cSpell.words": ["colour", "colours", "iankulin", "sdifj", "stringifying"] + "cSpell.words": ["colour", "colours", "iankulin", "sdifj", "stringifying"], + "deno.enable": true, + "deno.lint": true, + "deno.unstable": [], + "typescript.preferences.includePackageJsonAutoImports": "off" } diff --git a/deno.json b/deno.json index e6a117a..c7af92d 100644 --- a/deno.json +++ b/deno.json @@ -8,5 +8,9 @@ "test": "deno test --allow-env --allow-sys", "lint": "deno lint", "check": "deno check lib/logger.ts" + }, + "compilerOptions": { + "lib": ["deno.ns", "deno.window"], + "strict": true } }