28 lines
562 B
JSON
28 lines
562 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["deno.window", "deno.worker"]
|
|
},
|
|
"lint": {
|
|
"files": {
|
|
"include": ["./*.ts"]
|
|
},
|
|
"rules": {
|
|
"tags": ["recommended"],
|
|
"exclude": ["no-explicit-any"]
|
|
}
|
|
},
|
|
"fmt": {
|
|
"files": {
|
|
"include": ["./*.ts"]
|
|
},
|
|
"options": {
|
|
"useTabs": false,
|
|
"lineWidth": 80,
|
|
"indentWidth": 2,
|
|
"singleQuote": false
|
|
}
|
|
},
|
|
"tasks": {
|
|
"start": "deno run --allow-net --allow-read --allow-env --unstable-worker-options deno_server.ts"
|
|
}
|
|
} |