Skip to content

Commit ee4af65

Browse files
committed
Ignore non-relevant tsconfig errors.
1 parent 11eeb99 commit ee4af65

File tree

1 file changed

+8
-1
lines changed
  • dev-packages/e2e-tests/test-applications/create-remix-app-express-vite-dev

1 file changed

+8
-1
lines changed

dev-packages/e2e-tests/test-applications/create-remix-app-express-vite-dev/vite.config.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,12 @@ import { installGlobals } from '@remix-run/node';
77
installGlobals();
88

99
export default defineConfig({
10-
plugins: [remix(), tsconfigPaths()],
10+
plugins: [
11+
remix(),
12+
tsconfigPaths({
13+
// The dev server config errors are not relevant to this test app
14+
// https://github.com/aleclarson/vite-tsconfig-paths?tab=readme-ov-file#options
15+
ignoreConfigErrors: true,
16+
}),
17+
],
1118
});

0 commit comments

Comments
 (0)