Skip to main content
Module

x/frugal/deno.json

A frugal web framework
Go to Latest
File
{ "compilerOptions": { "lib": [ "dom", "esnext", "deno.ns", "deno.unstable", "dom.iterable", "dom.asynciterable" ] }, "fmt": { "files": { "exclude": [ "examples", "docs/dist", ".vscode/", ".deno_dir" ] }, "options": { "useTabs": false, "lineWidth": 80, "indentWidth": 4, "singleQuote": true, "proseWrap": "preserve" } }, "lint": { "files": { "exclude": [ "examples", "docs/dist", "tests", ".vscode", ".deno_dir" ] } }, "importMap": "./import_map.json", "tasks": { "test:unit": "DENO_FUTURE_CHECK=1 deno test --no-check --allow-all --coverage=tests/cov_profile/unit --jobs --shuffle tests/unit", "test:unit:snapshot": "DENO_FUTURE_CHECK=1 deno test --no-check --allow-all tests/unit -- --update", "test:integration": "DENO_FUTURE_CHECK=1 deno test --no-check --allow-all --coverage=tests/cov_profile/integration --jobs --shuffle tests/integration", "test:integration:snapshot": "DENO_FUTURE_CHECK=1 deno test --no-check --allow-all tests/integration -- --update", "test:snapshot": "deno task test:unit:snapshot && deno task test:integration:snapshot", "test": "deno task test:unit && deno task test:integration", "check": "deno check packages/core/mod.ts packages/frugal_oak/mod.ts packages/frugal_preact/mod.client.ts packages/frugal_preact/mod.server.ts packages/loader_jsx_svg/mod.ts packages/loader_script/mod.ts packages/loader_style/mod.ts docs/build.ts docs/serve.ts", "coverage": "DENO_FUTURE_CHECK=1 deno coverage tests/cov_profile/unit --lcov --include=packages --output=tests/cov_profile/unit/cov_profile.lcov && DENO_FUTURE_CHECK=1 deno coverage tests/cov_profile/integration --lcov --include=packages --output=tests/cov_profile/integration/cov_profile.lcov", "doc:dev": "DENO_FUTURE_CHECK=1 FRUGAL_DEV=1 deno run --no-check --allow-all --watch=docs/data docs/serve.ts", "doc:build": "DENO_FUTURE_CHECK=1 deno run --no-check --allow-all docs/build.ts", "doc:serve": "DENO_FUTURE_CHECK=1 deno run --no-check --allow-all docs/serve.ts", "example:run": "DENO_FUTURE_CHECK=1 deno run --no-check --allow-all", "swc:cache": "DENO_FUTURE_CHECK=1 deno run --no-check --allow-all packages/swc-wasm/cache.ts" }}