chore: add initial Deno configuration file
Signed-off-by: Max P. <Mail@MPassarello.de>
This commit is contained in:
34
deno.jsonc
Normal file
34
deno.jsonc
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"compilerOptions": {},
|
||||
"lint": {
|
||||
"files": {
|
||||
"include": [
|
||||
"src/"
|
||||
],
|
||||
}
|
||||
},
|
||||
"fmt": {
|
||||
"files": {
|
||||
"include": [
|
||||
"src/",
|
||||
"tests/"
|
||||
],
|
||||
},
|
||||
"options": {
|
||||
"lineWidth": 100,
|
||||
"indentWidth": 4,
|
||||
"useTabs": false
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"include": [
|
||||
"tests/"
|
||||
],
|
||||
},
|
||||
"tasks": {
|
||||
"test": "deno test --coverage tests/*.ts",
|
||||
"lint": "deno lint",
|
||||
"fmt": "deno fmt",
|
||||
"build": "echo 'Kein Build nötig bei Deno'"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user