enso/app/dashboard/tsconfig.json
somebody1234 1d0dfe17f8
Fix flaky dashboard E2E tests (#10773)
- Potentially fixes https://github.com/enso-org/enso/issues/10667
- Potentially fixes a similar issue with labels test failiing

# Important Notes
None
2024-08-12 12:55:49 +00:00

24 lines
468 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"src",
"e2e",
"../types",
"./src/**/*.json",
"./e2e/**/*.json",
"../../utils.ts",
".prettierrc.cjs",
"*.js",
"*.ts"
],
"exclude": ["./dist"],
"compilerOptions": {
"composite": true,
"noEmit": false,
"outDir": "../../node_modules/.cache/tsc",
"paths": { "#/*": ["./src/*"] },
"target": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable", "ES2023"]
}
}