From 2533b2be018d5b60a791b0ffd45fb92701828cbb Mon Sep 17 00:00:00 2001 From: yesoreyeram <153843+yesoreyeram@users.noreply.github.com> Date: Mon, 25 May 2026 05:57:35 +0100 Subject: [PATCH] updated @grafana/create-plugin --- .config/.cprc.json | 2 +- .config/tsconfig.json | 13 ++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.config/.cprc.json b/.config/.cprc.json index 9b4c4577..00bfc4d9 100644 --- a/.config/.cprc.json +++ b/.config/.cprc.json @@ -1,4 +1,4 @@ { - "version": "7.0.0", + "version": "7.6.0", "features": {} } diff --git a/.config/tsconfig.json b/.config/tsconfig.json index c0fc6d47..1daee41d 100644 --- a/.config/tsconfig.json +++ b/.config/tsconfig.json @@ -9,15 +9,18 @@ "alwaysStrict": true, "declaration": false, "rootDir": "../src", - "baseUrl": "../src", "typeRoots": ["../node_modules/@types"], - "resolveJsonModule": true + "resolveJsonModule": true, + "paths": { + "*": ["../src/*"] + } }, "ts-node": { "compilerOptions": { - "module": "commonjs", - "target": "es5", - "esModuleInterop": true + "module": "nodenext", + "target": "es2022", + "esModuleInterop": true, + "moduleResolution": "nodenext" }, "transpileOnly": true },