hookshot/tsconfig.json
Will Hunt 88273a249b
New project picker component for room configs (#624)
* 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
2023-01-20 13:16:11 +00:00

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/**/*"
]
}