mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
* modify tsconfig and set up unit tests * generate .d.ts files * setup project dependencies and configuration for unit tests * Add test setup and layout-test-utils along with first spec * Add paths back to tsconfig * remove type=module from package.json * Add typescript definition for .env * update package-lock
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
/// <reference types="vite/client" />
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SERVER_URL_DEV: string;
|
|
readonly VITE_SERVER_URL_PROD: string;
|
|
readonly VITE_SHOW_GOOGLE_LOGIN_OPTION: string;
|
|
readonly VITE_CLIENT_URL_DEV: string;
|
|
readonly VITE_CLIENT_URL_PROD: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|