renovate/tsconfig.json

33 lines
847 B
JSON
Raw Normal View History

{
"compilerOptions": {
"strict": true,
2019-07-17 08:14:56 +00:00
"noImplicitAny": false /* required for js files */,
"strictNullChecks": false /* required for js files */,
"outDir": "./dist",
"target": "es2018",
"module": "commonjs",
2019-05-16 16:54:54 +00:00
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2019-07-17 08:14:56 +00:00
"resolveJsonModule": false,
"noUnusedLocals": true,
"noImplicitOverride": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false /* we aren't prepared for enabling this by default since ts 4.4*/,
"lib": ["es2018"],
2021-10-27 06:22:02 +00:00
"types": ["node", "jest", "jest-extended", "expect-more-jest"],
"allowJs": true,
"checkJs": true
},
"exclude": [
"node_modules",
"./.cache",
"./dist",
"**/__mocks__/*",
"bin",
"coverage",
"config.js",
"tmp"
]
}