stock-bot/tsconfig.json

52 lines
1.2 KiB
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// JavaScript output target version
"target": "ES2022",
// Module configuration for different project types
"module": "ESNext",
"moduleResolution": "bundler",
"composite": true,
// Type checking
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
// Module interoperability
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// Additional features
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"disableReferencedProjectLoad": true,
"disableSourceOfProjectReferenceRedirect": false,
// Paths and output
"baseUrl": ".",
"paths": {
"@stock-bot/*": ["libs/*/src"]
}
},
"exclude": [
"node_modules",
"dist"
],
"references": [
{ "path": "./libs/api-client" },
{ "path": "./libs/config" },
{ "path": "./libs/event-bus" },
{ "path": "./libs/http-client" },
{ "path": "./libs/logger" },
{ "path": "./libs/utils" },
]
}