diff --git a/src/core/ScreenSizer.tsx b/src/core/ScreenSizer.tsx index 57bc6563e..81c950a7c 100644 --- a/src/core/ScreenSizer.tsx +++ b/src/core/ScreenSizer.tsx @@ -1,10 +1,10 @@ import { Object3DProps, useFrame } from '@react-three/fiber' -import { ForwardRefComponent } from 'helpers/ts-utils' import * as React from 'react' import { forwardRef, useRef } from 'react' import mergeRefs from 'react-merge-refs' import { Object3D, Vector3 } from 'three' import { calculateScaleFactor } from './calculateScaleFactor' +import { ForwardRefComponent } from '../helpers/ts-utils' const worldPos = /* @__PURE__ */ new Vector3() diff --git a/tsconfig.json b/tsconfig.json index 2d2b9dd4d..1b1f81f20 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,8 +16,7 @@ "outDir": "dist", "resolveJsonModule": true, "noImplicitAny": false, - "noImplicitThis": false, - "baseUrl": "./src" + "noImplicitThis": false }, "include": ["./src", "custom.d.ts"], "exclude": ["./node_modules/**/*"]