mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* save import sorting work * remove dupe headers and fix type errors * sort imports and exports * fix errors from export sorting * fix tests * codex feedback * fix exports * fix exports and tweak test build * fix export and format * fix license headers * fix app building and clean up test errors * fix android local e2e test * improve caching * final fixes * remove invalid option * fix sorting and get random values loading * fix import sorting
179 lines
5.7 KiB
TypeScript
179 lines
5.7 KiB
TypeScript
// SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11
|
|
|
|
import path from 'path';
|
|
import { visualizer } from 'rollup-plugin-visualizer';
|
|
import { fileURLToPath } from 'url';
|
|
import { defineConfig } from 'vite';
|
|
import svgr from 'vite-plugin-svgr';
|
|
|
|
import { tamaguiPlugin } from '@tamagui/vite-plugin';
|
|
import react from '@vitejs/plugin-react-swc';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
export default defineConfig({
|
|
root: 'web',
|
|
publicDir: 'web',
|
|
envDir: '..', // This is the directory where Vite will look for .env files relative to the root
|
|
resolve: {
|
|
extensions: [
|
|
'.web.tsx',
|
|
'.web.js',
|
|
'.web.jsx',
|
|
'.web.ts',
|
|
'.tsx',
|
|
'.ts',
|
|
'.jsx',
|
|
'.js',
|
|
],
|
|
alias: {
|
|
'@env': path.resolve(__dirname, 'env.ts'),
|
|
'/src': path.resolve(__dirname, 'src'),
|
|
'react-native-svg': 'react-native-svg-web',
|
|
'lottie-react-native': 'lottie-react',
|
|
'react-native-safe-area-context': path.resolve(
|
|
__dirname,
|
|
'src/mocks/react-native-safe-area-context.js',
|
|
),
|
|
'react-native-gesture-handler': path.resolve(
|
|
__dirname,
|
|
'src/mocks/react-native-gesture-handler.ts',
|
|
),
|
|
},
|
|
},
|
|
plugins: [
|
|
react(),
|
|
svgr({
|
|
include: '**/*.svg',
|
|
}),
|
|
tamaguiPlugin({
|
|
config: path.resolve(__dirname, 'tamagui.config.ts'),
|
|
components: ['tamagui'],
|
|
enableDynamicEvaluation: true,
|
|
excludeReactNativeWebExports: [
|
|
'Switch',
|
|
'ProgressBar',
|
|
'Picker',
|
|
'CheckBox',
|
|
'Touchable',
|
|
],
|
|
platform: 'web',
|
|
optimize: true,
|
|
}),
|
|
// Bundle analyzer for tree shaking analysis
|
|
visualizer({
|
|
filename: 'web/dist/bundle-analysis.html',
|
|
open: false, // Don't auto-open in CI
|
|
gzipSize: true,
|
|
brotliSize: true,
|
|
template: 'treemap', // Shows tree shaking effectiveness visually
|
|
}),
|
|
].filter(Boolean),
|
|
define: {
|
|
global: 'globalThis',
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['fs', 'path', 'child_process'],
|
|
esbuildOptions: {
|
|
// Optimize minification
|
|
minifyIdentifiers: true,
|
|
minifySyntax: true,
|
|
minifyWhitespace: true,
|
|
},
|
|
},
|
|
|
|
build: {
|
|
emptyOutDir: true,
|
|
outDir: path.resolve(__dirname, 'web/dist'),
|
|
// Optimize minification settings
|
|
minify: 'esbuild',
|
|
target: 'es2020',
|
|
cssMinify: true,
|
|
cssCodeSplit: true,
|
|
rollupOptions: {
|
|
external: ['fs', 'path', 'child_process'],
|
|
output: {
|
|
// Optimize chunk size and minification
|
|
compact: true,
|
|
manualChunks: {
|
|
// Core React and Navigation
|
|
'vendor-react-core': ['react', 'react-dom'],
|
|
'vendor-navigation': [
|
|
'@react-navigation/native',
|
|
'@react-navigation/native-stack',
|
|
],
|
|
|
|
// UI Framework - split Tamagui into smaller chunks
|
|
'vendor-ui-core': ['tamagui'],
|
|
'vendor-ui-icons': ['@tamagui/lucide-icons'],
|
|
'vendor-ui-toast': ['@tamagui/toast'],
|
|
|
|
// Crypto libraries - split heavy crypto into smaller chunks
|
|
'vendor-crypto-core': ['elliptic', 'node-forge'],
|
|
'vendor-crypto-ethers': ['ethers'],
|
|
'vendor-crypto-x509': ['@peculiar/x509', 'pkijs', 'asn1js'],
|
|
'vendor-crypto-cbor': ['@stablelib/cbor'],
|
|
|
|
// Heavy crypto dependencies - split further
|
|
'vendor-crypto-poseidon': ['poseidon-lite'],
|
|
'vendor-crypto-lean-imt': ['@openpassport/zk-kit-lean-imt'],
|
|
|
|
// Device-specific libraries
|
|
'vendor-device-nfc': ['react-native-nfc-manager'],
|
|
'vendor-device-gesture': ['react-native-gesture-handler'],
|
|
'vendor-device-haptic': ['react-native-haptic-feedback'],
|
|
|
|
// Analytics - split by provider
|
|
'vendor-analytics-segment': ['@segment/analytics-react-native'],
|
|
'vendor-analytics-sentry': ['@sentry/react', '@sentry/react-native'],
|
|
|
|
// Animations
|
|
'vendor-animations-lottie': ['lottie-react-native', 'lottie-react'],
|
|
|
|
// WebSocket and Socket.IO
|
|
'vendor-websocket': ['socket.io-client'],
|
|
|
|
// UUID generation
|
|
'vendor-uuid': ['uuid'],
|
|
|
|
// State management
|
|
'vendor-state-xstate': ['xstate'],
|
|
'vendor-state-zustand': ['zustand'],
|
|
|
|
// Screen-specific chunks - more granular
|
|
'screens-passport-core': ['./src/navigation/passport.ts'],
|
|
'screens-passport-nfc': ['./src/utils/nfcScanner.ts'],
|
|
|
|
// Proving - split into even smaller chunks
|
|
'screens-prove-core': ['./src/navigation/prove.ts'],
|
|
'screens-prove-machine-core': [
|
|
'./src/utils/proving/provingMachine.ts',
|
|
],
|
|
'screens-prove-validation-core': [
|
|
'./src/utils/proving/validateDocument.ts',
|
|
],
|
|
'screens-prove-attest': ['./src/utils/proving/attest.ts'],
|
|
'screens-prove-utils': [
|
|
'./src/utils/proving/provingUtils.ts',
|
|
'./src/utils/proving/provingInputs.ts',
|
|
'./src/utils/proving/cose.ts',
|
|
'./src/utils/proving/loadingScreenStateText.ts',
|
|
],
|
|
|
|
// Large animations - split out heavy Lottie files
|
|
'animations-passport-onboarding': [
|
|
'./src/assets/animations/passport_onboarding.json',
|
|
],
|
|
|
|
// Other screens
|
|
'screens-settings': ['./src/navigation/settings.ts'],
|
|
'screens-recovery': ['./src/navigation/recovery.ts'],
|
|
'screens-dev': ['./src/navigation/dev.ts'],
|
|
'screens-aesop': ['./src/navigation/aesop.ts'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|