forked from clearlydefined/service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1.39 KB
/
tsconfig.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"extends": ["@tsconfig/strictest/tsconfig.json", "@tsconfig/node20/tsconfig.json"],
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strictNullChecks": false,
"exactOptionalPropertyTypes": false
},
"include": [
"types/**/*",
"bin/www",
"lib/entityCoordinates.d.ts",
"lib/entityCoordinates.js",
"lib/resultCoordinates.d.ts",
"lib/resultCoordinates.js",
"lib/condaRepoAccess.d.ts",
"lib/condaRepoAccess.js",
"lib/coordinatesMapper.d.ts",
"lib/coordinatesMapper.js",
"lib/fetch.d.ts",
"lib/fetch.js",
"lib/github.d.ts",
"lib/github.js",
"lib/gitlab.d.ts",
"lib/gitlab.js",
"lib/gradleCoordinatesMapper.d.ts",
"lib/gradleCoordinatesMapper.js",
"lib/mockInsights.d.ts",
"lib/mockInsights.js",
"lib/pypiCoordinatesMapper.d.ts",
"lib/pypiCoordinatesMapper.js",
"lib/rateLimit.d.ts",
"lib/rateLimit.js",
"providers/caching/memory.d.ts",
"providers/caching/memory.js",
"providers/caching/redis.d.ts",
"providers/caching/redis.js",
"providers/caching/redisConfig.d.ts",
"providers/caching/redisConfig.js",
"providers/harvest/cacheBasedCrawler.d.ts",
"providers/harvest/cacheBasedCrawler.js",
"providers/logging/logger.d.ts",
"providers/logging/logger.js",
"providers/logging/winstonConfig.d.ts",
"providers/logging/winstonConfig.js"
]
}