renovatebot-github/tsconfig.json
2024-11-08 15:17:07 +00:00

15 lines
439 B
JSON

{
"extends": [
"@tsconfig/strictest/tsconfig.json",
"@tsconfig/node20/tsconfig.json"
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"module": "ESNext",
"moduleResolution": "Bundler",
"noImplicitAny": false,
"noPropertyAccessFromIndexSignature": false /* makes code more complex */
},
"exclude": ["node_modules/", "**/__mocks__/*", "dist/", "coverage/", "html/"]
}