Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions packages/core/config/config.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ interface IConfigIOS extends IConfigPlatform {
* List packages to be included in the iOS build.
*/
SPMPackages?: Array<IOSSPMPackage>;
/**
* Include native source code from anywhere
*/
NativeSource?: Array<{
/**
* The folder name which will group these referenced files together in Xcode
*/
name: string;
/**
* The path to the native source code.
* You can also use glob patterns, including directories outside of the project root.
*/
path: string;
}>;
}

interface IConfigVisionOS extends IConfigIOS {}
Expand Down
Loading