mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
Two copies of the module proxy got committed — the typed BrowserPoolModule version at lines 50-56 and a stale any-typed duplicate at lines 64-71. Removed the duplicate, keeping the typed version. Verification: - 40/40 browser tests pass (both previously-failing suites now green) - typecheck:core: 0 errors - env kill switch (OMNIROUTE_BROWSER_POOL=off): verified
27 lines
674 B
JSON
27 lines
674 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "esnext"],
|
|
"ignoreDeprecations": "5.0",
|
|
"baseUrl": "..",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@omniroute/open-sse": ["./open-sse"],
|
|
"@omniroute/open-sse/*": ["./open-sse/*"],
|
|
"@omniroute/browser-pool": ["./packages/browser-pool/src"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.js"]
|
|
}
|