mirror of
https://github.com/denoland/std.git
synced 2024-11-21 12:40:03 +00:00
86aeb5e17a
* chore: re-enable browser compat * fix
92 lines
3.0 KiB
JSON
92 lines
3.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"importMap": "./import_map.json",
|
|
"tasks": {
|
|
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",
|
|
"test:browser": "git grep --name-only \"This module is browser compatible.\" | grep -v deno.json | grep -v .github/workflows | grep -v _tools | grep -v encoding/README.md | grep -v media_types/vendor/update.ts | xargs deno check --config browser-compat.tsconfig.json",
|
|
"test:node": "node --import ./_tools/node_test_runner/register_deno_shim.mjs ./_tools/node_test_runner/run_test.mjs",
|
|
"fmt:licence-headers": "deno run --allow-read --allow-write ./_tools/check_licence.ts",
|
|
"lint:deprecations": "deno run --allow-read --allow-net --allow-env ./_tools/check_deprecation.ts",
|
|
"lint:circular": "deno run --allow-env --allow-read --allow-write --allow-net=deno.land,jsr.io ./_tools/check_circular_package_dependencies.ts",
|
|
"lint:mod-exports": "deno run --allow-env --allow-read ./_tools/check_mod_exports.ts",
|
|
"lint:tools-types": "deno check _tools/*.ts",
|
|
"lint:docs": "deno run -A _tools/check_docs.ts",
|
|
"lint:import-map": "deno run -A _tools/check_import_map.ts",
|
|
"lint": "deno lint && deno task fmt:licence-headers --check && deno task lint:circular && deno task lint:deprecations && deno task lint:tools-types && deno task lint:mod-exports && deno task lint:import-map && deno task lint:docs",
|
|
"typos": "typos -c ./.github/workflows/typos.toml",
|
|
"build:crypto": "deno task --cwd crypto/_wasm wasmbuild",
|
|
"wasmbuild": "deno run -A jsr:@deno/wasmbuild@0.17.1 --js-ext mjs --sync",
|
|
"cov": "deno coverage --ignore=\"**/*.generated.mjs,**/_test_utils.ts\"",
|
|
"cov:gen": "deno task cov --lcov --output=cov.lcov",
|
|
"cov:view": "deno task cov --html",
|
|
"ok": "deno task lint && deno fmt --check && deno task test:browser && deno task test"
|
|
},
|
|
"exclude": [
|
|
".git",
|
|
"crypto/_wasm/target",
|
|
"cov",
|
|
"jsonc/testdata",
|
|
"front_matter/testdata",
|
|
"_tools/node_test_runner",
|
|
"coverage",
|
|
"docs"
|
|
],
|
|
"lint": {
|
|
"rules": {
|
|
"include": [
|
|
"camelcase",
|
|
"no-sync-fn-in-async-fn",
|
|
"single-var-declarator",
|
|
"verbatim-module-syntax"
|
|
]
|
|
}
|
|
},
|
|
"workspace": [
|
|
"./archive",
|
|
"./assert",
|
|
"./async",
|
|
"./bytes",
|
|
"./cache",
|
|
"./cli",
|
|
"./collections",
|
|
"./crypto",
|
|
"./csv",
|
|
"./data_structures",
|
|
"./datetime",
|
|
"./dotenv",
|
|
"./encoding",
|
|
"./expect",
|
|
"./fmt",
|
|
"./front_matter",
|
|
"./fs",
|
|
"./html",
|
|
"./http",
|
|
"./ini",
|
|
"./internal",
|
|
"./io",
|
|
"./json",
|
|
"./jsonc",
|
|
"./log",
|
|
"./media_types",
|
|
"./msgpack",
|
|
"./net",
|
|
"./path",
|
|
"./regexp",
|
|
"./semver",
|
|
"./streams",
|
|
"./testing",
|
|
"./text",
|
|
"./toml",
|
|
"./ulid",
|
|
"./url",
|
|
"./uuid",
|
|
"./webgpu",
|
|
"./yaml"
|
|
]
|
|
}
|