stock-bot/apps/stock/orchestrator/tsconfig.json
2025-07-04 12:38:46 -04:00

34 lines
No EOL
906 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": ["bun-types"],
"esModuleInterop": true,
"resolveJsonModule": true,
"noEmit": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"paths": {
"@stock-bot/engine": ["../engine/index"],
"@stock-bot/engine/*": ["../engine/*"]
},
"baseUrl": "."
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}