@symbiote-native/angular 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbiote-native/angular",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "SymbioteNative's Angular adapter — a Renderer2/RendererFactory2 with DOM-less bootstrap driving real native iOS/Android views through the same engine as the other adapters.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -49,8 +49,9 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@angular/compiler-cli": "^22",
52
- "@symbiote-native/components": "0.2.0",
53
- "@symbiote-native/engine": "0.1.1",
52
+ "@react-native/typescript-config": "0.86.0",
53
+ "@symbiote-native/components": "0.2.1",
54
+ "@symbiote-native/engine": "0.1.2",
54
55
  "@symbiote-native/css-parser": "0.2.0"
55
56
  },
56
57
  "peerDependencies": {
@@ -1,4 +1,11 @@
1
1
  {
2
+ // The original (pre-packaging) example config chain was tsconfig.angular.json → ./tsconfig.json
3
+ // → @react-native/typescript-config, with tsconfig.angular.json's own compilerOptions (target,
4
+ // module, noEmit, moduleResolution, allowImportingTsExtensions, types below) overriding the RN
5
+ // config's conflicting esnext/noEmit:true/jsx settings. Extending it here reproduces that same
6
+ // precedence for every consumer, not just this repo's examples — a plain Angular+RN app expects
7
+ // its Angular tsconfig to inherit the RN TS baseline the same way.
8
+ "extends": "@react-native/typescript-config",
2
9
  "compilerOptions": {
3
10
  "target": "ES2022",
4
11
  "module": "ES2022",