Files
teleport/e2e/tsconfig.json
Grzegorz Zdunek eef415cfeb Connect: add e2e tests for headless auth (#64837)
* Switch to `ESNext` to allow using `Promise.withResolvers`

* Add missing accessibility specifiers

* Enable running Web UI in Connect tests

* Add tests for headless auth

* `aria-label` -> `title`

* Improve resource management with `AsyncDisposableStack.move`

* Pass `AbortError`

* Add comment about timeout
2026-03-23 10:24:46 +00:00

18 lines
392 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"paths": {
"@gravitational/e2e/helpers": ["./helpers"],
"@gravitational/e2e/helpers/*": ["./helpers/*"]
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}