Skip to main content
Module

std/deno.json

Deno standard library
Go to Latest
File
{ "compilerOptions": { "strict": true, "useUnknownInCatchVariables": true, "noImplicitOverride": true }, "fmt": { "files": { "exclude": [ ".git", "crypto/_wasm/target", "encoding/varint/_wasm/target", "cov", "encoding/testdata/jsonc", "encoding/front_matter/testdata", "node/_tools/versions", "node/_tools/test", "node/integrationtest/yarn.js", "wasi/testdata" ] } }, "importMap": "./test_import_map.json", "lint": { "files": { "exclude": [ ".git", "crypto/_wasm/target", "encoding/varint/_wasm/target", "encoding/testdata/jsonc", "encoding/front_matter/testdata", "cov", "node/vendor", "node/_module/node_modules/", "node/_tools/versions", "node/_tools/test", "node/integrationtest/yarn.js", "wasi/testdata" ] } }, "tasks": { "test": "deno test --doc --unstable --allow-all --coverage=./cov --ignore=node/,_tools/testdata", "test:browser": "git grep --name-only \"This module is browser compatible.\" | grep -v deno.json | grep -v .github/workflows | xargs deno cache --check --reload --config browser-compat.tsconfig.json", "lint:licence-headers": "deno run --allow-read ./_tools/check_licence.ts", "lint:deprecations": "deno run --allow-read --allow-net ./_tools/check_deprecation.ts", "lint:doc-imports": "deno run --allow-env --allow-read ./_tools/check_doc_imports.ts", "lint:check-assertions": "deno run --allow-read --allow-net ./_tools/check_assertions.ts", "lint": "deno lint && deno task node:lint-circular-deps && deno task lint:licence-headers && deno task lint:deprecations && deno task lint:doc-imports && deno task lint:check-assertions", "node:lint-circular-deps": "deno run --allow-read --allow-net=deno.land ./node/_tools/check_circular_deps.ts", "node:unit": "deno test --unstable --allow-all node/ --ignore=node/_tools/test.ts,node/_tools/versions/", "node:test": "deno test --unstable --allow-all node/_tools/test.ts", "node:setup": "deno run --allow-read --allow-net --allow-write node/_tools/setup.ts", "node:check-unstable-api": "deno check --unstable ./node/module_all.ts", "build:crypto": "deno task --cwd crypto/_wasm wasmbuild", "build:varint": "deno task --cwd encoding/varint/_wasm wasmbuild", "wasmbuild": "deno run --unstable -A https://deno.land/x/wasmbuild@0.10.2/main.ts --js-ext mjs --sync" }}