diff --git a/apps/desktop/src/three.d.ts b/apps/desktop/src/three.d.ts new file mode 100644 index 0000000..58a1b5e --- /dev/null +++ b/apps/desktop/src/three.d.ts @@ -0,0 +1,5 @@ +// ponytail: three ships an `exports` map with no "types" condition, so +// TS's bundler resolution can't fall back to the installed @types/three +// (transitive dep of electrobun/bun, which we don't use directly). Shim it +// away rather than fighting module resolution for a package we never call. +declare module 'three';