Skip to main content
Module

x/udibo_react_app/example/deno.jsonc

A React Framework for Deno that makes it easy to create highly interactive apps that have server side rendering with file based routing for both your UI and API.
Latest
File
{ "tasks": { "build": "deno run -A ../build.ts", "run": "deno run -A ./main.ts", "dev": "export APP_ENTRY_POINT=./main.ts && deno run -A --import-map=./import_map.json ../dev.ts", "test": "export APP_ENV=test && deno test -A .", "test-watch": "export APP_ENV=test && deno test -A --watch .", "check": "deno lint && deno fmt --check", "cache-reload": "deno cache --reload main.ts && deno cache --reload --import-map=./import_map.json ../dev.ts", "git-rebase": "git fetch origin main && git rebase --onto origin/main HEAD" }, "compilerOptions": { "lib": ["esnext", "dom", "dom.iterable", "dom.asynciterable", "deno.ns"], "jsx": "react-jsx", "jsxImportSource": "npm/react" }, "lint": { "exclude": ["public/build"] }, "fmt": { "exclude": ["public/build"] }, "importMap": "./import_map.json"}