@impakers/debug 1.3.5 → 1.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/next.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  /** Next.js config type (인라인 정의 — next를 devDependency로 안 끌어옴) */
2
2
  interface NextConfig {
3
3
  productionBrowserSourceMaps?: boolean;
4
- webpack?: (config: any, context: any) => any;
4
+ webpack?: ((config: any, context: any) => any) | null;
5
5
  [key: string]: any;
6
6
  }
7
7
  interface ImpakersDebugOptions {
package/dist/next.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /** Next.js config type (인라인 정의 — next를 devDependency로 안 끌어옴) */
2
2
  interface NextConfig {
3
3
  productionBrowserSourceMaps?: boolean;
4
- webpack?: (config: any, context: any) => any;
4
+ webpack?: ((config: any, context: any) => any) | null;
5
5
  [key: string]: any;
6
6
  }
7
7
  interface ImpakersDebugOptions {