mirror of https://github.com/grafana/grafana.git
27 lines
715 B
JSON
27 lines
715 B
JSON
// 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"
|
|
}
|
|
}
|