From 6435e36b6447dcff9e06c9005fa68345d922b3e3 Mon Sep 17 00:00:00 2001 From: Tom Ratcliffe Date: Mon, 9 Dec 2024 13:32:01 +0000 Subject: [PATCH] Chore: Fix `yarn generate-apis` command (#97639) Fix `yarn generate-apis` command https://github.com/reduxjs/redux-toolkit/issues/4470 --- tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 42db6464f66..cb0cb7e8261 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,6 +16,12 @@ "@grafana/schema/dist/esm/*": ["../packages/grafana-schema/src/*"] } }, + "ts-node": { + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "Node" + } + }, "extends": "@grafana/tsconfig/base.json", "include": [ "public/app/**/*.ts*",