43d492dce2
Signed-off-by: JoseSantosAMD <Jose.Santos@amd.com>
27 satır
737 B
JSON
27 satır
737 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.github.io/plugin-tools/docs/advanced-configuration#extending-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"
|
|
}
|