Lines Matching refs:global
13 * names in global scope
17 global names obfuscation and property names obfuscation are disabled by default, as they may
134 Specifies to obfuscate the names in the global scope. If you use this option, all global names will…
136 * the `import/export` global names.
137 * the global names that are not declared in the current file.
138 * the global names that are specified by [keep options](#keep-options).
139 * the global names in system API list.
207 `-keep-global-name` [,modifiers,...]
209 Specifies names that you want to keep in the global scope. For example,
211 -keep-global-name
216 **What global names should be kept?**
218 It is known that in javascript the variables in the global scope are properties of `globalThis`. So…
219 you access a global variable as a property, then the global name should be kept.
251 -keep-global-name
309 case -keep-global-name:
324 * The `-keep-dts` option will be converted to `-keep-global-name` and `-keep-property-name` options…