ditto/deno.json

28 lines
543 B
JSON
Raw Normal View History

2023-03-05 01:55:28 +00:00
{
"lock": false,
"tasks": {
2023-05-04 02:54:07 +00:00
"dev": "deno run --allow-read --allow-env --allow-net --allow-ffi --unstable --watch src/server.ts",
2023-03-05 01:55:28 +00:00
"test": "deno test"
},
"imports": {
"@/": "./src/"
},
"lint": {
"files": {
"include": ["src/"]
},
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"include": ["src/"],
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
2023-03-05 01:55:28 +00:00
}
}