mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 08:48:29 +00:00
* Fix: integration account webhooks * Fix: activity webhook * Feat: add integration credentials API * Fix: user rules for integrations * Feat: make self hosting simple * Fix: add init container functionality --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["./src/**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"verbatimModuleSyntax": false,
|
|
"jsx": "react",
|
|
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"strictPropertyInitialization": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"removeComments": false,
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": false,
|
|
"downlevelIteration": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"pretty": true,
|
|
"isolatedDeclarations": false,
|
|
"composite": true,
|
|
"sourceMap": true
|
|
}
|
|
}
|