diff --git a/examples/react/tsconfig.json b/examples/react/tsconfig.json index 3b8a70ac..8ea25518 100644 --- a/examples/react/tsconfig.json +++ b/examples/react/tsconfig.json @@ -10,7 +10,7 @@ "strict": true, "forceConsistentCasingInFileNames": true, "module": "ESNext", - "moduleResolution": "Node16", + "moduleResolution": "node16", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, diff --git a/packages/react/src/components/ConnectionLine/index.tsx b/packages/react/src/components/ConnectionLine/index.tsx index 817f12ef..ee816622 100644 --- a/packages/react/src/components/ConnectionLine/index.tsx +++ b/packages/react/src/components/ConnectionLine/index.tsx @@ -121,4 +121,4 @@ const ConnectionLine = ({ style, type = ConnectionLineType.Bezier, CustomCompone return ; }; -ConnectionLine.displayName = 'ConnectionLine'; +ConnectionLine.displayName = 'ConnectionLine'; \ No newline at end of file diff --git a/tooling/tsconfig/base.json b/tooling/tsconfig/base.json index ae8348e4..76ab90a4 100644 --- a/tooling/tsconfig/base.json +++ b/tooling/tsconfig/base.json @@ -10,7 +10,7 @@ "forceConsistentCasingInFileNames": true, "inlineSources": false, "isolatedModules": true, - "moduleResolution": "node", + "moduleResolution": "bundler", "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": false,