Files
home/Projects/kompose/news/apps/backend/tsconfig.json
2025-10-08 10:35:48 +02:00

22 lines
553 B
JSON

{
"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"]
}