mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-25 10:19:30 -05:00
a8581ce163
- 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>
15 lines
214 B
JSON
15 lines
214 B
JSON
{
|
|
"extends": "./../ts/tsconfig.json",
|
|
"include": [
|
|
"lib/*.ts",
|
|
"lib/**/*.ts",
|
|
],
|
|
"files": [
|
|
"./../ts/index.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": ["esnext"],
|
|
"target": "ES2022",
|
|
}
|
|
}
|