@oriolrius/grafana-business-text
Version:
Data-driven text with Markdown and Handlebars support for Grafana
28 lines (27 loc) • 609 B
JSON
{
"extends": "@grafana/tsconfig",
"compilerOptions": {
"module": "CommonJS",
"target": "ES2020",
"noEmit": true,
"skipLibCheck": true,
"strict": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": ["../src/@types", "node_modules/@types"]
},
"include": [
"**/*.ts",
"**/*.js",
"../webpack.config.ts",
"../src/@types/**/*"
],
"exclude": [
"node_modules"
]
}