enso/app/ide-desktop/lib/dashboard/tsconfig.json
somebody1234 1cc7ca1338
Fix typechecking (#9279)
- Fix issue where `playwright-report/` is being typechecked by `npm run typecheck` in the dashboard, causing CI to fail
- Attempt to fix flaky dashboard test

# Important Notes
To test that typechecking isn't completely broken, it's recommended to intentionally create a type error in the dashboard code base.
2024-03-06 08:20:08 +00:00

26 lines
460 B
JSON

{
"extends": "../../tsconfig.json",
"include": [
"src",
"e2e",
"../types",
"./**/*.json",
"../../utils.ts",
".prettierrc.cjs",
"*.js",
"*.ts"
],
"exclude": ["./dist"],
"compilerOptions": {
"composite": true,
"noEmit": false,
"outDir": "../../../../node_modules/.cache/tsc",
"paths": { "#/*": ["./src/*"] },
"plugins": [
{
"name": "ts-plugin-namespace-auto-import"
}
]
}
}