53 lines
1.3 KiB
JSON
53 lines
1.3 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": false,
|
|
"declaration": true,
|
|
"disableReferencedProjectLoad": true,
|
|
"disableSourceOfProjectReferenceRedirect": false,
|
|
|
|
// Paths and output
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@stock-bot/*": ["libs/*/src"]
|
|
}
|
|
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
], "references": [
|
|
{ "path": "./libs/config" },
|
|
{ "path": "./libs/http-client" },
|
|
{ "path": "./libs/logger" },
|
|
{ "path": "./libs/mongodb-client" },
|
|
{ "path": "./libs/postgres-client" },
|
|
{ "path": "./libs/questdb-client" },
|
|
{ "path": "./libs/types" },
|
|
{ "path": "./libs/utils" }
|
|
]
|
|
|
|
}
|