2025-10-08 10:35:48 +02:00
|
|
|
{
|
2025-10-10 16:43:21 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es2016",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@src/*": ["./src/*"],
|
|
|
|
|
"@tests/*": ["./tests/*"],
|
|
|
|
|
"@helpers/*": ["./tests/integration/helpers/*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "tests/**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-10-08 10:35:48 +02:00
|
|
|
}
|