From 0e26bd05467aa823815bbc46204b0a0dfeaf997c Mon Sep 17 00:00:00 2001 From: twlite <46562212+twlite@users.noreply.github.com> Date: Fri, 4 Jul 2025 08:30:51 +0545 Subject: [PATCH] fix(create-commandkit): set tsconfig module resolution type to node --- packages/create-commandkit/templates/JavaScript/jsconfig.json | 2 +- packages/create-commandkit/templates/TypeScript/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/create-commandkit/templates/JavaScript/jsconfig.json b/packages/create-commandkit/templates/JavaScript/jsconfig.json index ddbd9e2f..4e77fa74 100644 --- a/packages/create-commandkit/templates/JavaScript/jsconfig.json +++ b/packages/create-commandkit/templates/JavaScript/jsconfig.json @@ -3,7 +3,7 @@ "compilerOptions": { "lib": ["ESNext", "DOM"], "target": "ESNext", - "moduleResolution": "Bundler", + "moduleResolution": "Node", "module": "Preserve", "allowImportingTsExtensions": true, "esModuleInterop": true, diff --git a/packages/create-commandkit/templates/TypeScript/tsconfig.json b/packages/create-commandkit/templates/TypeScript/tsconfig.json index 3ec7e724..2c06b336 100644 --- a/packages/create-commandkit/templates/TypeScript/tsconfig.json +++ b/packages/create-commandkit/templates/TypeScript/tsconfig.json @@ -3,7 +3,7 @@ "compilerOptions": { "lib": ["ESNext", "DOM"], "target": "ESNext", - "moduleResolution": "Bundler", + "moduleResolution": "Node", "module": "Preserve", "allowImportingTsExtensions": true, "esModuleInterop": true,