2021-11-16 07:45:17 +00:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"strictNullChecks": true,
|
2022-04-24 22:48:54 +00:00
|
|
|
"noImplicitAny": true
|
2021-11-16 07:45:17 +00:00
|
|
|
},
|
2021-11-29 14:52:56 +00:00
|
|
|
"exclude": [
|
2022-02-03 17:21:33 +00:00
|
|
|
// tsconfig.json
|
|
|
|
"node_modules",
|
|
|
|
"./.cache",
|
|
|
|
"./dist",
|
|
|
|
"**/__mocks__/*",
|
|
|
|
"coverage",
|
|
|
|
"config.js",
|
|
|
|
"tmp",
|
|
|
|
|
|
|
|
// TODO: fixme
|
2022-04-24 22:48:54 +00:00
|
|
|
"lib/util/**/*.spec.ts",
|
|
|
|
"lib/workers/**/*.spec.ts",
|
|
|
|
"lib/modules/datasource/**/*.spec.ts",
|
|
|
|
"lib/modules/manager/**/*.spec.ts",
|
|
|
|
"lib/modules/versioning/**/*.spec.ts",
|
2022-02-03 17:21:33 +00:00
|
|
|
"lib/renovate.ts",
|
2022-04-24 22:48:54 +00:00
|
|
|
"lib/renovate.spec.ts",
|
2022-02-03 17:21:33 +00:00
|
|
|
"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/changelog/index.ts",
|
|
|
|
"lib/workers/repository/error-config.ts",
|
|
|
|
"lib/workers/repository/error.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/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/sort.ts",
|
|
|
|
"lib/workers/repository/process/write.ts",
|
2022-04-12 16:13:20 +00:00
|
|
|
"lib/workers/repository/process/vulnerabilities.ts",
|
2022-02-03 17:21:33 +00:00
|
|
|
"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",
|
2022-04-24 22:48:54 +00:00
|
|
|
"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",
|
2022-05-05 09:17:11 +00:00
|
|
|
"lib/workers/repository/update/pr/code-owners.ts"
|
2021-11-16 07:45:17 +00:00
|
|
|
]
|
|
|
|
}
|