This commit is contained in:
Manav Rathi
2024-06-02 15:49:17 +05:30
parent 1360378aaa
commit 3f3a63d8da
4 changed files with 10 additions and 3 deletions

View File

@@ -1,7 +1,10 @@
import {
isBetaUser,
isInternalUser,
} from "@/new/photos/services/feature-flags";
import { ComlinkWorker } from "@/next/worker/comlink-worker";
import { ensure } from "@/utils/ensure";
import type { Remote } from "comlink";
import { isBetaUser, isInternalUser } from "services/feature-flag";
import { getAllLocalFiles } from "services/fileService";
import type { EnteFile } from "types/file";
import { isInternalUserForML } from "utils/user";

View File

@@ -2,6 +2,10 @@
"name": "@/new",
"version": "0.0.0",
"private": true,
"dependencies": {},
"dependencies": {
"@/next": "*",
"@/utils": "*",
"@ente/shared": "*"
},
"devDependencies": {}
}

View File

@@ -51,7 +51,7 @@ const nextConfig = {
emotion: true,
},
// Use Next.js to transpile our internal packages before bundling them.
transpilePackages: ["@/next", "@/utils"],
transpilePackages: ["@/next", "@/utils", "@/new"],
// Add environment variables to the JavaScript bundle. They will be
// available as `process.env.VAR_NAME` to our code.