Exclude type only imports circular dependencies check (#120075)

* exclude types

* codeowners
This commit is contained in:
Kristina Demeshchik
2026-03-12 08:37:48 -04:00
committed by GitHub
parent 1a2c6a834d
commit 01379bae32
2 changed files with 11 additions and 0 deletions

1
.github/CODEOWNERS vendored
View File

@@ -772,6 +772,7 @@ i18next.config.ts @grafana/grafana-frontend-platform
# root files, mostly frontend
/.browserslistrc @grafana/frontend-ops
/.madgerc @grafana/frontend-ops
/package.json @grafana/frontend-ops
/nx.json @grafana/frontend-ops
/project.json @grafana/frontend-ops

10
.madgerc Normal file
View File

@@ -0,0 +1,10 @@
{
"detectiveOptions": {
"ts": {
"skipTypeImports": true
},
"tsx": {
"skipTypeImports": true
}
}
}