Lines Matching refs:rawConfig
14 constructor(readonly rawConfig: RawExpoModuleConfig) {}
20 return this.rawConfig.platforms?.includes(platform) ?? false;
27 const iosConfig = this.rawConfig.ios;
37 return this.rawConfig.ios?.appDelegateSubscribers ?? [];
44 return this.rawConfig.ios?.reactDelegateHandlers ?? [];
51 return arrayize(this.rawConfig.ios?.podspecPath);
58 return arrayize(this.rawConfig.ios?.swiftModuleName);
65 return this.rawConfig.ios?.debugOnly ?? false;
72 const androidConfig = this.rawConfig.android;
82 return arrayize(this.rawConfig.android?.gradlePath ?? []);
89 return arrayize(this.rawConfig.android?.gradlePlugins ?? []);
96 return this.rawConfig;