mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
24 lines
454 B
JSON
24 lines
454 B
JSON
{
|
|
"extends": "./tsconfig",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"resolveJsonModule": false,
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"types": ["node"]
|
|
},
|
|
"exclude": [
|
|
"./.cache",
|
|
"./dist",
|
|
"**/__mocks__/**",
|
|
"**/__fixtures__/**",
|
|
"**/__testutil__/**",
|
|
"**/*.spec.ts",
|
|
"jest.config.ts",
|
|
"./test",
|
|
"./tools"
|
|
]
|
|
}
|