Initial setup
This commit is contained in:
28
deno.jsonc
Normal file
28
deno.jsonc
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"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 --unstable-worker-options deno_server.ts"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user