chore: add TypeScript configuration file with project references

This commit is contained in:
Toni Koskinen
2026-03-27 12:12:09 +02:00
parent 4de890ba77
commit 083b503095
12 changed files with 395 additions and 1023 deletions

View File

@@ -2,6 +2,7 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"composite": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"importHelpers": true,

View File

@@ -2,6 +2,7 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"composite": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"importHelpers": true,
@@ -15,9 +16,6 @@
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}

View File

@@ -11,5 +11,10 @@
"jest.config.cts",
"src/**/*.spec.ts",
"src/**/*.test.ts"
],
"references": [
{
"path": "../prisma-generated/tsconfig.lib.json"
}
]
}