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 } }