Files
OmniRoute/open-sse/tsconfig.json
diegosouzapw 94175fa04a refactor(open-sse): migrate all 94 .js files to .ts
- 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/
2026-02-17 07:47:58 -03:00

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"
]
}