mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-16 04:03:02 +03:00
- Rename all 94 .js files to .ts across config/, utils/, services/, handlers/, executors/, translator/, transformer/, and root index - Add proper TypeScript interfaces: RegistryEntry, AudioProvider, FetchOptions - Add class property declarations to BaseExecutor - Type key function parameters in utils layer (tlsClient, stream, logger, error, proxyFetch, proxyDispatcher, etc.) - Add @ts-ignore annotations for remaining TS2339 errors (gradual migration) - Zero TypeScript errors in open-sse/tsconfig.json - Zero .js files remaining in open-sse/
26 lines
516 B
JSON
26 lines
516 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "esnext"],
|
|
"baseUrl": "..",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@omniroute/open-sse": ["./open-sse"],
|
|
"@omniroute/open-sse/*": ["./open-sse/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.js"
|
|
]
|
|
}
|