Initial commit with GitLab CI/CD pipeline
This commit is contained in:
24
deno.json
Normal file
24
deno.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"tasks": {
|
||||
"dev": "deno run --allow-net --allow-env --watch src/main.ts",
|
||||
"start": "deno run --allow-net --allow-env src/main.ts",
|
||||
"test": "deno test --allow-net --allow-env src/main.test.ts"
|
||||
},
|
||||
"fmt": {
|
||||
"useTabs": false,
|
||||
"lineWidth": 100,
|
||||
"indentWidth": 2,
|
||||
"semiColons": true,
|
||||
"singleQuote": false,
|
||||
"proseWrap": "preserve"
|
||||
},
|
||||
"lint": {
|
||||
"rules": {
|
||||
"tags": ["recommended"]
|
||||
}
|
||||
},
|
||||
"compilerOptions": {
|
||||
"lib": ["deno.window"],
|
||||
"strict": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user