Chore: Remove @grafana/tsconfig (#109186)

* Chore: Remove @grafana/tsconfig

* update codeowners

* revert changes to grafana-plugin-configs
This commit is contained in:
Josh Hunt
2025-08-06 15:34:34 +01:00
committed by GitHub
parent 99ce8eb1c0
commit 72a56ad503
31 changed files with 56 additions and 43 deletions

View File

@ -0,0 +1,26 @@
// Base config file for all Typescript prjects in the Grafana monorepo
{
"compilerOptions": {
"alwaysStrict": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"jsx": "react",
"lib": ["dom", "dom.iterable", "es2022"],
"module": "esnext",
"moduleResolution": "node",
"noEmitHelpers": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"pretty": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es2018"
}
}