From 88fe30bdd206aa3e541c4eaa699492d53532f2e2 Mon Sep 17 00:00:00 2001 From: Matthias Stemmler Date: Thu, 11 Apr 2024 10:47:36 +0200 Subject: [PATCH] fix(vite): get tsconfig from new path including target --- e2e/vite/src/vite-legacy.test.ts | 2 +- packages/vite/plugins/nx-tsconfig-paths.plugin.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/vite/src/vite-legacy.test.ts b/e2e/vite/src/vite-legacy.test.ts index 48b9fe9e01733..8f4bd7f4c9fd5 100644 --- a/e2e/vite/src/vite-legacy.test.ts +++ b/e2e/vite/src/vite-legacy.test.ts @@ -248,7 +248,7 @@ export default App; const results = runCLI(`build ${app} --buildLibsFromSource=false`); expect(results).toContain('Successfully ran target build for project'); // this should be less modules than building from source - expect(results).toContain('40 modules transformed'); + expect(results).toContain('38 modules transformed'); }); it('should build app from libs without package.json in lib', () => { diff --git a/packages/vite/plugins/nx-tsconfig-paths.plugin.ts b/packages/vite/plugins/nx-tsconfig-paths.plugin.ts index 4fd839c4d811b..e88e92ee7b7d1 100644 --- a/packages/vite/plugins/nx-tsconfig-paths.plugin.ts +++ b/packages/vite/plugins/nx-tsconfig-paths.plugin.ts @@ -56,6 +56,7 @@ export function nxViteTsPaths(options: nxViteTsPathsOptions = {}) { workspaceRoot, 'tmp', projectRootFromWorkspaceRoot, + process.env.NX_TASK_TARGET_TARGET ?? 'build', 'tsconfig.generated.json' ) );