forked from tumblfeed/nzbunity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.07 KB
/
tsconfig.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
36
37
38
{
"files": [
"src/background/util.ts",
"src/background/nzb.ts",
"src/background/main.ts",
"src/content/options.ts",
"src/content/popup.ts",
"src/content/sites/newznab.ts",
"src/content/sites/newznab-detect.ts",
"src/content/sites/althub.ts",
"src/content/sites/animetosho.ts",
"src/content/sites/binsearch.ts",
"src/content/sites/dognzb.ts",
"src/content/sites/drunkenslug.ts",
"src/content/sites/gingadaddy.ts",
"src/content/sites/nzbfinder.ts",
"src/content/sites/nzbgeek.ts",
"src/content/sites/nzbindex.ts",
"src/content/sites/nzbking.ts",
"src/content/sites/nzbserver.ts",
"src/content/sites/nzbsu.ts",
"src/content/sites/omgwtfnzbs.ts",
"src/content/sites/tabularasa.ts"
],
"compileOnSave": false,
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"pretty": true,
"target": "es2015",
"lib": [
"es2017",
"dom"
],
"typeRoots": ["@types", "node_modules/@types", "node_modules/web-ext-types"]
}
}