Files
github-stats-extended/tsconfig.base.json
T
MartinandMarco Pasqualetti d476f8cbe1 extract "core" package, small improvements (#137)
This PR mainly refactors the code by extracting a "core" package which
is then used by the "backend" and "frontend" apps.

Apart from this the PR also contains several smaller changes like fixing
dependabot, upgrading dependencies, aligned "package.json" files, added
tests, ...

addresses step 1 of #32 
closes #136

---------

Co-authored-by: Marco Pasqualetti <marco.pasqualetti@live.com>
2026-04-18 10:37:26 +02:00

42 lines
1.1 KiB
JSON

{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// Type Checking
"strict": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Modules
"module": "nodenext",
"target": "esnext",
"types": [],
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"customConditions": [
/**
* Custom condition that resolved to original typescript source
* It allows realtime typechecking between packages without the need to rebuild them.
* Keep in sync with `eslint.config.js` `createTypeScriptImportResolver`
*/
"@stats/source"
],
// Interop Constraints
"verbatimModuleSyntax": true,
"isolatedModules": true,
// Language and Environment
"jsx": "react-jsx",
// Completeness
"skipLibCheck": true
}
}