Skip to content

Commit b88c692

Browse files
Copilothotlong
andcommitted
fix: use nodenext module resolution for plugin tsconfig
Address code review feedback: use nodenext (not bundler) module resolution since plugin.js runs in Node.js at runtime, not in a bundler. Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 126c56c commit b88c692

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/console/tsconfig.plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"target": "ES2020",
4-
"module": "ESNext",
5-
"moduleResolution": "bundler",
4+
"module": "nodenext",
5+
"moduleResolution": "nodenext",
66
"declaration": true,
77
"strict": true,
88
"skipLibCheck": true,

0 commit comments

Comments
 (0)