forked from bridge-core/deno-dash-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
33 lines (33 loc) · 1.02 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"importMap": "importMap.json",
"tasks": {
"install": "deno install -A -f -n dash_compiler ./mod.ts",
"install:full": "deno install -A --reload -f -n dash_compiler ./mod.ts",
"build": "deno task build:apple-x86 && deno task build:apple-aarch64 && deno task build:windows-x86",
"build:apple-x86": "deno compile --target x86_64-apple-darwin --output ./executables/dash-apple-x64 -A ./mod.ts",
"build:apple-aarch64": "deno compile --target aarch64-apple-darwin --output ./executables/dash-apple-aarch64 -A ./mod.ts",
"build:windows-x86": "deno compile --target x86_64-pc-windows-msvc --output ./executables/dash.exe -A ./mod.ts"
},
"fmt": {
"files": {
"include": ["*.json", "*.ts", "*.tsx", "src/"]
},
"options": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"singleQuote": true
}
},
"lint": {
"files": {
"include": ["*.ts", "src/"],
"exclude": ["dist/", ".vscode/", ".github/"]
},
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": []
}
}
}