Skip to content

Commit 0e26bd0

Browse files
committed
fix(create-commandkit): set tsconfig module resolution type to node
1 parent 5ff2112 commit 0e26bd0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/create-commandkit/templates/JavaScript/jsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"lib": ["ESNext", "DOM"],
55
"target": "ESNext",
6-
"moduleResolution": "Bundler",
6+
"moduleResolution": "Node",
77
"module": "Preserve",
88
"allowImportingTsExtensions": true,
99
"esModuleInterop": true,

packages/create-commandkit/templates/TypeScript/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"lib": ["ESNext", "DOM"],
55
"target": "ESNext",
6-
"moduleResolution": "Bundler",
6+
"moduleResolution": "Node",
77
"module": "Preserve",
88
"allowImportingTsExtensions": true,
99
"esModuleInterop": true,

0 commit comments

Comments
 (0)