2021-11-16 07:45:17 +00:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"strictNullChecks": true,
|
2021-11-16 11:01:39 +00:00
|
|
|
"noImplicitAny": true,
|
2021-12-09 12:44:42 +00:00
|
|
|
"lib": ["es2020"]
|
2021-11-16 07:45:17 +00:00
|
|
|
},
|
2021-11-29 14:52:56 +00:00
|
|
|
"include": [
|
|
|
|
"lib/config/app-strings.ts",
|
|
|
|
"lib/config/global.ts",
|
|
|
|
"lib/config/migrations/types.ts",
|
|
|
|
"lib/config/presets/common.ts",
|
|
|
|
"lib/constants/**/*.ts",
|
|
|
|
"lib/data-files.generated.ts",
|
|
|
|
"lib/datasource/**/common.ts",
|
|
|
|
"lib/datasource/**/types.ts",
|
|
|
|
"lib/globals.d.ts",
|
|
|
|
"lib/logger/**/*.ts",
|
|
|
|
"lib/manager/**/common.ts",
|
|
|
|
"lib/manager/**/types.ts",
|
|
|
|
"lib/platform/**/types.ts",
|
|
|
|
"lib/platform/github/graphql.ts",
|
|
|
|
"lib/platform/utils/pr-body.ts",
|
|
|
|
"lib/proxy.ts",
|
|
|
|
"lib/types/**/*.ts",
|
2021-11-29 16:04:43 +00:00
|
|
|
"lib/util/cache/*.ts",
|
2021-11-29 14:52:56 +00:00
|
|
|
"lib/util/clone.ts",
|
|
|
|
"lib/util/date.ts",
|
2021-12-10 14:07:02 +00:00
|
|
|
"lib/util/exec",
|
2021-12-01 09:12:56 +00:00
|
|
|
"lib/util/fs",
|
2021-11-29 14:52:56 +00:00
|
|
|
"lib/util/git/config.ts",
|
|
|
|
"lib/util/git/types.ts",
|
|
|
|
"lib/util/host-rules.ts",
|
|
|
|
"lib/util/html.ts",
|
|
|
|
"lib/util/http/hooks.ts",
|
|
|
|
"lib/util/http/types.ts",
|
|
|
|
"lib/util/index.ts",
|
|
|
|
"lib/util/json-writer/indentation-type.ts",
|
|
|
|
"lib/util/mask.spec.ts",
|
|
|
|
"lib/util/mask.ts",
|
|
|
|
"lib/util/object.ts",
|
|
|
|
"lib/util/regex.spec.ts",
|
|
|
|
"lib/util/regex.ts",
|
|
|
|
"lib/util/sanitize.ts",
|
|
|
|
"lib/util/split.ts",
|
|
|
|
"lib/util/url.ts",
|
|
|
|
"lib/versioning/swift/*.ts",
|
|
|
|
"lib/versioning/ubuntu/*.ts",
|
|
|
|
"lib/workers/pr/changelog/hbs-template.ts",
|
|
|
|
"lib/workers/pr/changelog/types.ts",
|
|
|
|
"lib/workers/repository/init/types.ts",
|
|
|
|
"lib/workers/repository/model/commit-message.ts",
|
|
|
|
"test/graphql-snapshot.ts",
|
|
|
|
"test/http-mock.ts",
|
|
|
|
"test/json-schema.ts",
|
|
|
|
"test/newline-snapshot-serializer.ts",
|
|
|
|
"test/static-files.spec.ts",
|
|
|
|
"tools/utils/index.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"lib/constants/platform.spec.ts",
|
|
|
|
"lib/datasource/docker/common.ts",
|
|
|
|
"lib/datasource/github-releases/common.ts",
|
|
|
|
"lib/datasource/go/common.ts",
|
|
|
|
"lib/datasource/go/types.ts",
|
|
|
|
"lib/datasource/helm/common.ts",
|
|
|
|
"lib/logger/err-serializer.spec.ts",
|
|
|
|
"lib/manager/gradle/shallow/types.ts",
|
2021-12-01 09:12:56 +00:00
|
|
|
"lib/util/cache/*.spec.ts",
|
2021-12-10 14:07:02 +00:00
|
|
|
"lib/util/exec/buildpack.spec.ts",
|
|
|
|
"lib/util/exec/buildpack.ts",
|
|
|
|
"lib/util/exec/docker/index.spec.ts",
|
|
|
|
"lib/util/exec/docker/index.ts",
|
|
|
|
"lib/util/exec/env.spec.ts",
|
|
|
|
"lib/util/exec/index.spec.ts",
|
|
|
|
"lib/util/exec/index.ts",
|
2021-12-01 09:12:56 +00:00
|
|
|
"lib/util/fs/index.spec.ts"
|
2021-11-16 07:45:17 +00:00
|
|
|
]
|
|
|
|
}
|