-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
35 lines (35 loc) · 901 Bytes
/
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
34
35
{
"compilerOptions": {
"noImplicitOverride": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
]
},
"fmt": {
"useTabs": true,
"lineWidth": 112,
"indentWidth": 3,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"imports": {
"/hooks/": "/Users/Delusoire/AppData/Local/Spicetify/hooks/",
"/modules/": "/Users/Delusoire/AppData/Local/Spicetify/modules/"
},
"tasks": {
"cm:fetch": "deno run -A scripts/classmap-fetch.ts",
"pw:build": "./scripts/build.ps1",
"pw:watch": "./scripts/watch.ps1",
"pw:enable": "./scripts/enable.ps1",
"pw:disable": "./scripts/disable.ps1",
"sh:build": "./scripts/build.sh",
"sh:watch": "./scripts/watch.sh",
"sh:enable": "./scripts/enable.sh",
"sh:disable": "./scripts/disable.sh",
"build:release": "deno run -A scripts/build-release.ts",
"ci:build:release": "deno task build:release modules/*"
}
}