npmAdditionalFiles top-level property

ConfigVariable<Map<String, String>> npmAdditionalFiles
final

A set of additional files to include in the npm package.

This is a map from paths (relative to the root of the package) to the contents of those files. It defaults to an empty map.

Implementation

final npmAdditionalFiles = InternalConfigVariable.fn<Map<String, String>>(
    () => {},
    freeze: (map) => Map.unmodifiable(map));