@oriolrius/grafana-business-text
Version:
Data-driven text with Markdown and Handlebars support for Grafana
34 lines (33 loc) • 663 B
JSON
{
"extends": "@grafana/tsconfig",
"compilerOptions": {
"module": "CommonJS",
"noEmit": true,
"skipLibCheck": true,
"strict": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["jest", "@testing-library/jest-dom", "node"]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx",
"webpack.config.js",
"jest-setup.js",
"jest.config.js"
],
"exclude": [
"node_modules",
"dist",
"static/coverage",
"backend"
]
}