From c456662318fb962b1af0c2f1db459c950fa2ba0f Mon Sep 17 00:00:00 2001 From: Sathya Gunasekaran Date: Thu, 31 Aug 2023 11:15:37 +0100 Subject: [PATCH] [tsconfig] Specify module resolution to be nodenext --- compiler/packages/babel-plugin-react-forget/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/packages/babel-plugin-react-forget/tsconfig.json b/compiler/packages/babel-plugin-react-forget/tsconfig.json index 529fb76c76..d487abc908 100644 --- a/compiler/packages/babel-plugin-react-forget/tsconfig.json +++ b/compiler/packages/babel-plugin-react-forget/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "@tsconfig/node18-strictest/tsconfig.json", "compilerOptions": { + "moduleResolution": "nodenext", "declaration": true, "rootDir": "src", "outDir": "dist",