-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtsconfig.json
More file actions
70 lines (70 loc) · 2.46 KB
/
tsconfig.json
File metadata and controls
70 lines (70 loc) · 2.46 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"extends": ["@tsconfig/strictest/tsconfig.json", "@tsconfig/node24/tsconfig.json", "@tsconfig/node-ts/tsconfig.json"],
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strictNullChecks": false,
"exactOptionalPropertyTypes": false,
"noPropertyAccessFromIndexSignature": false,
"verbatimModuleSyntax": false
},
"include": [
"types/**/*",
"ghcrawler/types/**/*",
"lib/entitySpec.d.ts",
"lib/entitySpec.js",
"lib/sourceSpec.d.ts",
"lib/fetchResult.d.ts",
"lib/fetchResult.js",
"lib/baseHandler.d.ts",
"lib/baseHandler.js",
"lib/utils.d.ts",
"lib/utils.js",
"lib/fetch.d.ts",
"lib/fetch.js",
"lib/memoryCache.d.ts",
"lib/memoryCache.js",
"lib/sourceDiscovery.d.ts",
"ghcrawler/lib/visitorMap.d.ts",
"ghcrawler/lib/visitorMap.js",
"ghcrawler/lib/traversalPolicy.d.ts",
"ghcrawler/lib/traversalPolicy.js",
"ghcrawler/lib/request.d.ts",
"ghcrawler/lib/request.js",
"ghcrawler/lib/crawler.d.ts",
"ghcrawler/lib/crawlerService.d.ts",
"ghcrawler/crawlerFactory.d.ts",
"ghcrawler/middleware/asyncMiddleware.d.ts",
"ghcrawler/middleware/auth.d.ts",
"ghcrawler/middleware/sendHelper.d.ts",
"ghcrawler/providers/locker/memory.d.ts",
"ghcrawler/providers/queuing/nestedQueue.d.ts",
"ghcrawler/providers/queuing/queueSet.d.ts",
"ghcrawler/providers/queuing/scopedQueueSets.d.ts",
"ghcrawler/providers/queuing/attenuatedQueue.d.ts",
"ghcrawler/providers/queuing/inmemorycrawlqueue.d.ts",
"ghcrawler/providers/storage/inmemoryDocStore.d.ts",
"ghcrawler/routes/index.d.ts",
"ghcrawler/routes/requests.d.ts",
"ghcrawler/app.d.ts",
"ghcrawler/bin/www.d.ts",
"ghcrawler/index.d.ts",
"providers/**/*.d.ts",
"config/**/*.d.ts",
"ghcrawler/memoryConfig.d.ts",
"ghcrawler/providers/index.d.ts",
"ghcrawler/providers/queuing/memoryFactory.d.ts",
"ghcrawler/providers/queuing/storageQueue.d.ts",
"ghcrawler/providers/queuing/storageQueueFactory.d.ts",
"ghcrawler/providers/queuing/storageQueueManager.d.ts",
"ghcrawler/providers/queuing/storageBackedQueue.d.ts",
"ghcrawler/providers/queuing/storageBackedInMemoryQueueManager.d.ts",
"ghcrawler/providers/queuing/webhookFactory.d.ts",
"ghcrawler/providers/storage/azureBlobFactory.d.ts",
"ghcrawler/providers/storage/file.d.ts",
"ghcrawler/providers/storage/storageDocStore.d.ts",
"index.d.ts",
"test/**/*.ts"
]
}