ditto/deno.json

27 lines
669 B
JSON
Raw Normal View History

2023-03-05 01:55:28 +00:00
{
2023-05-04 03:46:23 +00:00
"$schema": "https://deno.land/x/deno@v1.32.3/cli/schemas/config-file.v1.json",
2023-03-05 01:55:28 +00:00
"lock": false,
"tasks": {
2023-08-04 19:37:23 +00:00
"start": "deno run --allow-read --allow-write=data --allow-env --allow-net --unstable --watch src/server.ts",
2023-08-04 19:41:08 +00:00
"test": "deno test --allow-read --allow-write=data --allow-env --unstable src"
2023-03-05 01:55:28 +00:00
},
"imports": {
"@/": "./src/"
},
"lint": {
2023-05-04 02:59:40 +00:00
"include": ["src/"],
2023-03-05 01:55:28 +00:00
"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
}
}