Skip to main content
Module

x/fastro/deno.json

Fast and simple web application framework for deno
Go to Latest
File
{ "lock": false, "compilerOptions": { "strict": true, "jsx": "react-jsx", "jsxImportSource": "https://esm.sh/react" }, "tasks": { "test": "rm -rf cov && deno test -A --unstable --coverage=cov && deno coverage cov", "coverage": "deno coverage cov --lcov > cov.lcov", "deno": "deno run -A --unstable examples/deno.ts", "hello-string": "deno run -A --unstable examples/hello_string.ts", "hello-jsx": "deno run -A --unstable examples/hello_jsx.tsx", "hello-json": "deno run -A --unstable examples/hello_json.ts", "hello": "deno run -A --unstable examples/hello_world.ts", "static": "deno run -A --unstable examples/static_file.ts", "ssr": "deno run -A --unstable examples/ssr.ts", "middleware": "deno run -A --unstable examples/middleware.ts", "jsx": "deno run -A --unstable examples/hello_world_fastro_jsx.tsx", "params": "deno run -A --unstable examples/params.ts", "container": "deno run -A --unstable examples/container.ts" }}