ditto/deno.json

28 lines
721 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:48:37 +00:00
"test": "deno test --allow-read --allow-write=data --allow-env --unstable src",
"check": "deno check --unstable src/server.ts"
2023-03-05 01:55:28 +00:00
},
"imports": {
"@/": "./src/"
},
"lint": {
2023-08-07 07:13:49 +00:00
"include": ["src/"],
2023-03-05 01:55:28 +00:00
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
2023-08-07 07:13:49 +00:00
"include": ["src/"],
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
2023-03-05 01:55:28 +00:00
}
}