Files
deeplite-server/deno.json
2026-01-10 15:05:03 +01:00

25 lines
517 B
JSON

{
"tasks": {
"dev": "deno run --allow-net --allow-env --watch src/main.ts",
"start": "deno run --allow-net --allow-env src/main.ts",
"test": "deno test --allow-net --allow-env src/main.test.ts"
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"compilerOptions": {
"lib": ["deno.window"],
"strict": true
}
}