@utoo/pack-shared 1.3.1 → 1.3.2
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/cjs/config.d.ts +1 -8
- package/esm/config.d.ts +1 -8
- package/package.json +1 -1
package/cjs/config.d.ts
CHANGED
|
@@ -20,15 +20,7 @@ export type RustifiedEnv = {
|
|
|
20
20
|
}[];
|
|
21
21
|
export interface ExperimentalConfig {
|
|
22
22
|
swcPlugins?: [string, any][];
|
|
23
|
-
dynamicIO?: boolean;
|
|
24
|
-
useCache?: boolean;
|
|
25
|
-
cacheHandlers?: Record<string, string>;
|
|
26
|
-
esmExternals?: boolean | "loose";
|
|
27
|
-
ppr?: boolean | "incremental";
|
|
28
|
-
taint?: boolean;
|
|
29
23
|
reactCompiler?: boolean | any;
|
|
30
|
-
viewTransition?: boolean;
|
|
31
|
-
serverActions?: boolean | any;
|
|
32
24
|
}
|
|
33
25
|
export type JSONValue = string | number | boolean | JSONValue[] | {
|
|
34
26
|
[k: string]: JSONValue;
|
|
@@ -168,6 +160,7 @@ export interface ConfigComplete {
|
|
|
168
160
|
styles?: {
|
|
169
161
|
autoCssModules?: boolean;
|
|
170
162
|
emotion?: boolean;
|
|
163
|
+
postcss?: JSONValue;
|
|
171
164
|
less?: {
|
|
172
165
|
implementation?: string;
|
|
173
166
|
[key: string]: any;
|
package/esm/config.d.ts
CHANGED
|
@@ -20,15 +20,7 @@ export type RustifiedEnv = {
|
|
|
20
20
|
}[];
|
|
21
21
|
export interface ExperimentalConfig {
|
|
22
22
|
swcPlugins?: [string, any][];
|
|
23
|
-
dynamicIO?: boolean;
|
|
24
|
-
useCache?: boolean;
|
|
25
|
-
cacheHandlers?: Record<string, string>;
|
|
26
|
-
esmExternals?: boolean | "loose";
|
|
27
|
-
ppr?: boolean | "incremental";
|
|
28
|
-
taint?: boolean;
|
|
29
23
|
reactCompiler?: boolean | any;
|
|
30
|
-
viewTransition?: boolean;
|
|
31
|
-
serverActions?: boolean | any;
|
|
32
24
|
}
|
|
33
25
|
export type JSONValue = string | number | boolean | JSONValue[] | {
|
|
34
26
|
[k: string]: JSONValue;
|
|
@@ -168,6 +160,7 @@ export interface ConfigComplete {
|
|
|
168
160
|
styles?: {
|
|
169
161
|
autoCssModules?: boolean;
|
|
170
162
|
emotion?: boolean;
|
|
163
|
+
postcss?: JSONValue;
|
|
171
164
|
less?: {
|
|
172
165
|
implementation?: string;
|
|
173
166
|
[key: string]: any;
|