mirror of
https://github.com/gravitational/teleport.git
synced 2026-08-28 21:12:20 +08:00
eef415cfeb
* 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
18 lines
392 B
JSON
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"]
|
|
}
|