浏览代码

chore: ignore warnings from @coze-editor/editor/language-typescript (#557)

Yiwei Mao 6 月之前
父节点
当前提交
4b2d41b693
共有 2 个文件被更改,包括 16 次插入0 次删除
  1. 8 0
      apps/demo-fixed-layout/rsbuild.config.ts
  2. 8 0
      apps/demo-free-layout/rsbuild.config.ts

+ 8 - 0
apps/demo-fixed-layout/rsbuild.config.ts

@@ -23,4 +23,12 @@ export default defineConfig({
   html: {
     title: 'demo-fixed-layout',
   },
+  tools: {
+    rspack: {
+      /**
+       * ignore warnings from @coze-editor/editor/language-typescript
+       */
+      ignoreWarnings: [/Critical dependency: the request of a dependency is an expression/],
+    },
+  },
 });

+ 8 - 0
apps/demo-free-layout/rsbuild.config.ts

@@ -23,4 +23,12 @@ export default defineConfig({
   html: {
     title: 'demo-free-layout',
   },
+  tools: {
+    rspack: {
+      /**
+       * ignore warnings from @coze-editor/editor/language-typescript
+       */
+      ignoreWarnings: [/Critical dependency: the request of a dependency is an expression/],
+    },
+  },
 });