Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: WebStreamr <210764791+webstreamr@users.noreply.github.com>
29 lines
897 B
JSON
29 lines
897 B
JSON
{
|
|
"extends": "@tsconfig/node24/tsconfig.json",
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictBuiltinIteratorReturn": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"useUnknownInCatchVariables": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "src/test", "**/*.test.ts"]
|
|
}
|