diff --git a/features/platform-admin/frontend-admin/e2e/admin-login-verify.e2e.ts b/features/platform-admin/frontend-admin/e2e/admin-login-verify.e2e.ts index a36714981..034da0314 100644 --- a/features/platform-admin/frontend-admin/e2e/admin-login-verify.e2e.ts +++ b/features/platform-admin/frontend-admin/e2e/admin-login-verify.e2e.ts @@ -1,4 +1,4 @@ -import { test, expect } from '@playwright/test'; +import { test } from '@playwright/test'; test('dev login flow via Quick Sign In button', async ({ page }) => { const consoleMsgs: string[] = []; diff --git a/features/profile/frontend-app/tsup.config.ts b/features/profile/frontend-app/tsup.config.ts index 84a4b47de..e487d6066 100644 --- a/features/profile/frontend-app/tsup.config.ts +++ b/features/profile/frontend-app/tsup.config.ts @@ -6,7 +6,7 @@ export default defineConfig({ pages: 'src/pages.ts', }, format: ['esm'], - dts: true, + dts: { compilerOptions: { skipLibCheck: true } }, clean: false, outDir: 'dist', external: ['react', 'react-dom', 'react-router', 'react-router-dom', 'framer-motion'],