looking better

This commit is contained in:
Boki 2025-06-18 22:46:29 -04:00
parent 3ebe1178f4
commit 5c4dac8f27
25 changed files with 232 additions and 416 deletions

View file

@ -1,10 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
"references": [{ "path": "../../libs/logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" },
{ "path": "../http" }
]
}

View file

@ -1,9 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" }
]
}

View file

@ -1,22 +1,5 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"moduleResolution": "bundler",
"types": ["bun-types"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src",
"declarationDir": "./dist",
"composite": true,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test"]
"extends": "../../tsconfig.lib.json",
"references": [
]
}

View file

@ -1,9 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../logger" }, { "path": "../utils" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" },
{ "path": "../utils" }
]
}

View file

@ -1,9 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" }
]
}

View file

@ -1,17 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"**/*.spec.ts",
"**/test/**/*",
"**/tests/**/*"
],
"references": [{ "path": "../types" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" },
{ "path": "../types" }
]
}

View file

@ -1,9 +1,5 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }]
"extends": "../../tsconfig.lib.json",
"references": [
]
}

View file

@ -1,9 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" },
{ "path": "../types" }
]
}

View file

@ -1,9 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" },
{ "path": "../types" }
]
}

View file

@ -45,7 +45,10 @@ export function getProxyURL(): string | null {
const proxy = proxies[currentIndex];
currentIndex = (currentIndex + 1) % proxies.length;
if (!proxy) {
return null;
}
// Ensure the proxy URL is in http://host:port format
return proxy;
}
@ -72,7 +75,11 @@ export function getRandomProxyURL(): string | null {
}
const randomIndex = Math.floor(Math.random() * proxies.length);
return proxies[randomIndex];
const proxy = proxies[randomIndex];
if (!proxy) {
return null;
}
return proxy;
}
/**

View file

@ -1,10 +1,5 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "src",
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
"extends": "../../tsconfig.lib.json",
"references": [
]
}

View file

@ -1,9 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../logger" },
{ "path": "../types" }
]
}

View file

@ -1,22 +1,8 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"composite": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../cache" },
{ "path": "../logger" },
{ "path": "../types" }
]
}

View file

@ -1,9 +1,5 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
]
}

View file

@ -1,16 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../types" },
{ "path": "../logger" },
{ "path": "../utils" },
{ "path": "../event-bus" },
{ "path": "../data-frame" },
{ "path": "../vector-engine" }
{ "path": "../event-bus" },
{ "path": "../logger" },
{ "path": "../utils" }
]
}

View file

@ -1,9 +1,5 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": []
"extends": "../../tsconfig.lib.json",
"references": [
]
}

View file

@ -1,9 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"references": [{ "path": "../types" }, { "path": "../config" }, { "path": "../logger" }]
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../types" }
]
}

View file

@ -1,12 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"extends": "../../tsconfig.lib.json",
"references": [
{ "path": "../types" },
{ "path": "../logger" },
{ "path": "../utils" },
{ "path": "../data-frame" }