# What this PR does Migrate from grafana-toolkit to grafana plugin tools ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/3651 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required) --------- Co-authored-by: Michael Derynck <michael.derynck@grafana.com> Co-authored-by: Dominik <dominik.broj@grafana.com>
26 lines
764 B
JSON
26 lines
764 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/create-a-plugin/extend-a-plugin/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"
|
||
}
|