forked from renovatebot/renovate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.strict.json
102 lines (101 loc) · 4.5 KB
/
tsconfig.strict.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"extends": "./tsconfig.json",
"compilerOptions": {
"strictNullChecks": true,
"noImplicitAny": true
},
"exclude": [
// tsconfig.json
"node_modules",
"./.cache",
"./dist",
"**/__mocks__/*",
"coverage",
"config.js",
"tmp",
// TODO: fixme
"lib/util/**/*.spec.ts",
"lib/workers/**/*.spec.ts",
"lib/modules/datasource/**/*.spec.ts",
"lib/modules/manager/**/*.spec.ts",
"lib/modules/versioning/**/*.spec.ts",
"lib/renovate.ts",
"lib/renovate.spec.ts",
"lib/workers/global/autodiscover.ts",
"lib/workers/global/config/parse/cli.ts",
"lib/workers/global/config/parse/env.ts",
"lib/workers/global/config/parse/file.ts",
"lib/workers/global/config/parse/host-rules-from-env.ts",
"lib/workers/global/config/parse/index.ts",
"lib/workers/global/index.ts",
"lib/workers/global/initialize.ts",
"lib/workers/repository/cache.ts",
"lib/workers/repository/changelog/index.ts",
"lib/workers/repository/error-config.ts",
"lib/workers/repository/error.ts",
"lib/workers/repository/extract/file-match.ts",
"lib/workers/repository/extract/index.ts",
"lib/workers/repository/extract/manager-files.ts",
"lib/workers/repository/finalise/index.ts",
"lib/workers/repository/finalise/prune.ts",
"lib/workers/repository/index.ts",
"lib/workers/repository/init/apis.ts",
"lib/workers/repository/init/cache.ts",
"lib/workers/repository/init/config.ts",
"lib/workers/repository/init/index.ts",
"lib/workers/repository/init/semantic.ts",
"lib/workers/repository/init/vulnerability.ts",
"lib/workers/repository/onboarding/branch/check.ts",
"lib/workers/repository/onboarding/branch/config.ts",
"lib/workers/repository/onboarding/branch/create.ts",
"lib/workers/repository/onboarding/branch/index.ts",
"lib/workers/repository/onboarding/branch/rebase.ts",
"lib/workers/repository/onboarding/pr/base-branch.ts",
"lib/workers/repository/onboarding/pr/config-description.ts",
"lib/workers/repository/onboarding/pr/errors-warnings.ts",
"lib/workers/repository/onboarding/pr/index.ts",
"lib/workers/repository/onboarding/pr/pr-list.ts",
"lib/workers/repository/process/deprecated.ts",
"lib/workers/repository/process/extract-update.ts",
"lib/workers/repository/process/fetch.ts",
"lib/workers/repository/process/index.ts",
"lib/workers/repository/process/limits.ts",
"lib/workers/repository/process/lookup/bucket.ts",
"lib/workers/repository/process/lookup/current.ts",
"lib/workers/repository/process/lookup/filter-checks.ts",
"lib/workers/repository/process/lookup/filter.ts",
"lib/workers/repository/process/lookup/generate.ts",
"lib/workers/repository/process/lookup/index.ts",
"lib/workers/repository/process/lookup/rollback.ts",
"lib/workers/repository/process/lookup/types.ts",
"lib/workers/repository/process/lookup/update-type.ts",
"lib/workers/repository/process/sort.ts",
"lib/workers/repository/process/write.ts",
"lib/workers/repository/process/vulnerabilities.ts",
"lib/workers/repository/updates/branch-name.ts",
"lib/workers/repository/updates/branchify.ts",
"lib/workers/repository/updates/flatten.ts",
"lib/workers/repository/updates/generate.ts",
"lib/workers/repository/update/branch/artifacts.ts",
"lib/workers/repository/update/branch/auto-replace.ts",
"lib/workers/repository/update/branch/automerge.ts",
"lib/workers/repository/update/branch/check-existing.ts",
"lib/workers/repository/update/branch/commit.ts",
"lib/workers/repository/update/branch/execute-post-upgrade-commands.ts",
"lib/workers/repository/update/branch/get-updated.ts",
"lib/workers/repository/update/branch/handle-existing.ts",
"lib/workers/repository/update/branch/index.ts",
"lib/workers/repository/update/branch/reuse.ts",
"lib/workers/repository/update/branch/schedule.ts",
"lib/workers/repository/update/pr/automerge.ts",
"lib/workers/repository/update/pr/body/controls.ts",
"lib/workers/repository/update/pr/changelog/github/index.ts",
"lib/workers/repository/update/pr/changelog/gitlab/index.ts",
"lib/workers/repository/update/pr/changelog/index.ts",
"lib/workers/repository/update/pr/changelog/release-notes.ts",
"lib/workers/repository/update/pr/changelog/releases.ts",
"lib/workers/repository/update/pr/changelog/source-github.ts",
"lib/workers/repository/update/pr/changelog/source-gitlab.ts",
"lib/workers/repository/update/pr/code-owners.ts"
]
}