grafana/packages/grafana-plugin-configs/tsconfig.json
2023-10-16 17:31:43 +02:00

20 lines
419 B
JSON

{
"compilerOptions": {
"alwaysStrict": true,
"declaration": false,
"resolveJsonModule": true
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"esModuleInterop": true
},
"transpileOnly": true
},
"extends": "@grafana/tsconfig",
"exclude": ["**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"],
"include": ["./types", "."]
}