mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 13:17:08 +00:00

* Implement new Dropdown component * Apply field styling to search too * General improvements to GitLabClient * Add support for storing small base64 files in the storage provider * Refactor GitLab repo to use new connection provider * Start trying to deduplicate code * Begin refactor to support ConnectionSearch * Add support for GitHub searching * Refactor GitLab/GitHub into components * Port Jira to ConnectionSearch * Drop unused functions * Hide connection list if no connections are present. * Cleanups * Cleanup abort controller * changelog * Update JIRA for search powers
37 lines
893 B
JSON
37 lines
893 B
JSON
{
|
|
"extends": "@tsconfig/node16/tsconfig.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"declaration": false,
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
/* Additional Checks */
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"allowJs": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
// TODO: Type errors
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"tests/**/*",
|
|
"web/**/*"
|
|
]
|
|
}
|