gant-core 0.1.44 → 0.1.46
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/lib/cli/index.js +17 -7
- package/lib/cli/index.js.map +1 -1
- package/lib/index.d.ts +2 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1698,6 +1698,7 @@ interface GantCustomConfig {
|
|
|
1698
1698
|
setting?: CONFIG_TYPE;
|
|
1699
1699
|
vue?: boolean;
|
|
1700
1700
|
compression?: boolean;
|
|
1701
|
+
terserOptions?: any;
|
|
1701
1702
|
}
|
|
1702
1703
|
interface GantUserConfig extends Configuration, GantCustomConfig {
|
|
1703
1704
|
devServer?: Configuration$1;
|
|
@@ -1728,6 +1729,7 @@ type LOGIN_CONFIG = {
|
|
|
1728
1729
|
ssoCheckTokenUrl?: string;
|
|
1729
1730
|
ssoLoginUrl?: string;
|
|
1730
1731
|
ssologinOutUrl?: string;
|
|
1732
|
+
loginOut?: boolean;
|
|
1731
1733
|
};
|
|
1732
1734
|
type MAIN_CONFIG_TYPE = {
|
|
1733
1735
|
requestTimeout?: number;
|