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>
22 lines
536 B
JSON
22 lines
536 B
JSON
{
|
|
"extends": ["../../tsconfig.base.json"],
|
|
"include": ["src", "tests", "vitest.config.ts"],
|
|
"compilerOptions": {
|
|
/**
|
|
* This workspace contains a lot of type errors.
|
|
* We will add typecheck later:
|
|
* @see https://github.com/stats-organization/github-stats-extended/issues/140
|
|
*
|
|
* At the moment we just need to output `js` and `.d.ts` files
|
|
*/
|
|
"noCheck": true,
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"outDir": "build"
|
|
}
|
|
}
|