// Base config file for all Typescript prjects in the Grafana monorepo { "compilerOptions": { "alwaysStrict": true, "strict": true, "allowSyntheticDefaultImports": true, "customConditions": ["@grafana-app/source"], "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" } }