mirror of
https://github.com/grafana/grafana.git
synced 2025-09-15 15:13:50 +08:00
Chore: Remove @grafana/tsconfig (#109186)
* Chore: Remove @grafana/tsconfig * update codeowners * revert changes to grafana-plugin-configs
This commit is contained in:
26
scripts/tsconfig.base.json
Normal file
26
scripts/tsconfig.base.json
Normal 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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user