dominionator/deno.json

43 lines
995 B
JSON
Raw Permalink Normal View History

2024-12-29 23:00:38 -05:00
{
"lock": false,
"tasks": {
2025-01-04 22:32:17 -05:00
"dev": "deno run -A tools/dev.ts",
2024-12-29 23:00:38 -05:00
"build": "deno run -A tools/build.ts",
"build:watch": "deno run --watch=src -A tools/build.ts",
2025-01-04 22:32:17 -05:00
"serve": "deno run -A src/server/index.ts",
"serve:watch": "deno run --watch=src -A src/server/index.ts"
2024-12-29 23:00:38 -05:00
},
"lint": {
"rules": {
"tags": [
"recommended"
]
}
},
"exclude": [
"dist"
],
"imports": {
"react/": "https://esm.sh/react@18.3.1/",
"react-dom/": "https://esm.sh/react-dom@18.3.1/client/",
"react": "https://esm.sh/react@18.3.1",
"react-dom": "https://esm.sh/react-dom@18.3.1/client",
"canvas": "https://esm.sh/canvas@3.0.0"
},
"compilerOptions": {
"lib": ["deno.ns", "DOM"],
"jsx": "react-jsx",
"jsxImportSource": "react",
"strict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"allowUnusedLabels": false
},
"fmt": {
"useTabs": true
}
}