mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 10:01:08 +08:00
feat(config): ability to include native source code from any path (#10698)
[skip ci]
This commit is contained in:
@ -39,6 +39,20 @@ interface IConfigIOS extends IConfigPlatform {
|
|||||||
* List packages to be included in the iOS build.
|
* List packages to be included in the iOS build.
|
||||||
*/
|
*/
|
||||||
SPMPackages?: Array<IOSSPMPackage>;
|
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 {}
|
interface IConfigVisionOS extends IConfigIOS {}
|
||||||
|
Reference in New Issue
Block a user