From 2ece63cb8b673a91bb79f3696414304886b83e56 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:57:19 -0500 Subject: [PATCH] fix preprocessor.ts dependencies intellisense --- src/utilities/preprocessor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilities/preprocessor.ts b/src/utilities/preprocessor.ts index ed8d060..2ab8069 100644 --- a/src/utilities/preprocessor.ts +++ b/src/utilities/preprocessor.ts @@ -44,7 +44,7 @@ const writeTsConfig = async (format: 'cjs' | 'esm', configPath: string, fw: File const target = format === 'esm' ? { target: 'esnext' } : {}; const sernTsConfig = { "compilerOptions": { - "moduleResolution": "bundler", + "moduleResolution": "node", "strict": true, "skipLibCheck": true, ...target,