Bumps [`@grafana/create-plugin`](https://github.com/grafana/plugin-tools/tree/main/packages/create-plugin) configuration from 4.2.1 to 5.26.4. **Notes for reviewer:** This is an auto-generated PR which ran `@grafana/create-plugin update`. Please consult the create-plugin [CHANGELOG.md](https://github.com/grafana/plugin-tools/blob/main/packages/create-plugin/CHANGELOG.md) to understand what may have changed. Please review the changes thoroughly before merging. --------- Co-authored-by: grafana-plugins-platform-bot[bot] <144369747+grafana-plugins-platform-bot[bot]@users.noreply.github.com> Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
27 lines
746 B
JSON
27 lines
746 B
JSON
/*
|
||
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️
|
||
*
|
||
* In order to extend the configuration follow the steps in
|
||
* https://grafana.com/developers/plugin-tools/how-to-guides/extend-configurations#extend-the-typescript-config
|
||
*/
|
||
{
|
||
"compilerOptions": {
|
||
"alwaysStrict": true,
|
||
"declaration": false,
|
||
"rootDir": "../src",
|
||
"baseUrl": "../src",
|
||
"typeRoots": ["../node_modules/@types"],
|
||
"resolveJsonModule": true
|
||
},
|
||
"ts-node": {
|
||
"compilerOptions": {
|
||
"module": "commonjs",
|
||
"target": "es5",
|
||
"esModuleInterop": true
|
||
},
|
||
"transpileOnly": true
|
||
},
|
||
"include": ["../src", "./types"],
|
||
"extends": "@grafana/tsconfig"
|
||
}
|