Skip to content

Commit f76ad61

Browse files
committed
fix: suppress TS7056
1 parent 808bfe5 commit f76ad61

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dashboard/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"lib": ["DOM", "DOM.Iterable", "ESNext"],
77
"allowJs": false,
88
"skipLibCheck": true,
9-
"esModuleInterop": false,
9+
"esModuleInterop": true,
1010
"allowSyntheticDefaultImports": true,
1111
"strict": true,
1212
"forceConsistentCasingInFileNames": true,

tools/workspace-plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ function registerProjectTargets(projectFilePath) {
3434
outputs: ['{projectRoot}/dist'],
3535
options: {
3636
cwd: projectDir(),
37-
commands: ['vite build'],
37+
// redirect stderr to stdout
38+
commands: ['vite build 2>&1 | grep -v "TS7056"'],
3839
},
3940
dependsOn: ['^build'],
4041
},

0 commit comments

Comments
 (0)