(
generatorOptions,
{ targetProperties }
)
| 840 | * @returns {void} |
| 841 | */ |
| 842 | const applyCssGeneratorOptionsDefaults = ( |
| 843 | generatorOptions, |
| 844 | { targetProperties } |
| 845 | ) => { |
| 846 | D( |
| 847 | generatorOptions, |
| 848 | "exportsOnly", |
| 849 | !targetProperties || targetProperties.document === false |
| 850 | ); |
| 851 | D(generatorOptions, "esModule", true); |
| 852 | }; |
| 853 | |
| 854 | /** |
| 855 | * Apply module defaults. |
no test coverage detected