Files
cypress/packages/server/tsconfig.json
T
Bill Glesias a8581ce163 refactor(server): clean up code review issues in plugin child TS conversion
- Remove `return false` from uncaughtException/unhandledRejection handlers (Node.js ignores it)
- Remove dead `RunPlugins.wrapChildPromise` method and its `UNDEFINED_SERIALIZED` constant (all call sites use the imported util function)
- Make `validateEvent` params `event` and `handler` required; remove unnecessary `!` assertion
- Fix `(val as Function).name` to use a typed object cast
- Collapse verbose 3-line comment in ProjectConfigIpc.ts to one line
- Remove trailing whitespace from tsconfig.json

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-22 13:11:22 -04:00

15 lines
214 B
JSON

{
"extends": "./../ts/tsconfig.json",
"include": [
"lib/*.ts",
"lib/**/*.ts",
],
"files": [
"./../ts/index.d.ts"
],
"compilerOptions": {
"lib": ["esnext"],
"target": "ES2022",
}
}