feat(config): added option for ignoredNativeDependencies

This commit is contained in:
Nathan Walker
2021-08-11 10:51:58 -07:00
parent dbaab58538
commit 4cad76cb6a

View File

@ -142,4 +142,9 @@ export interface NativeScriptConfig {
* Default: css-tree
*/
cssParser?: 'rework' | 'nativescript' | 'css-tree';
/**
* Optionally specify a list of npm package names for which you would like the NativeScript CLI to ignore when attaching native dependencies to the build
*/
ignoredNativeDependencies?: string[];
}