expo-module-scripts 4.1.3 → 4.1.5

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/CHANGELOG.md CHANGED
@@ -10,6 +10,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 4.1.5 — 2025-04-25
14
+
15
+ ### 🎉 New features
16
+
17
+ - Add TS config base for Node apps. ([#36322](https://github.com/expo/expo/pull/36322) by [@Simek]
18
+
19
+ ## 4.1.4 — 2025-04-23
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 4.1.3 — 2025-04-22
14
24
 
15
25
  _This version does not introduce any user-facing changes._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "4.1.3",
3
+ "version": "4.1.5",
4
4
  "description": "A private package for various tasks for Expo module packages like compiling and testing",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -35,16 +35,16 @@
35
35
  "@tsconfig/node18": "^18.2.2",
36
36
  "@types/jest": "^29.2.1",
37
37
  "babel-plugin-dynamic-import-node": "^2.3.3",
38
- "babel-preset-expo": "~13.1.5",
38
+ "babel-preset-expo": "~13.1.7",
39
39
  "commander": "^12.1.0",
40
- "eslint-config-universe": "^14.2.0",
40
+ "eslint-config-universe": "^15.0.3",
41
41
  "glob": "^10.4.2",
42
- "jest-expo": "~53.0.0-preview.3",
42
+ "jest-expo": "~53.0.0",
43
43
  "jest-snapshot-prettier": "npm:prettier@^2",
44
44
  "jest-watch-typeahead": "2.2.1",
45
45
  "resolve-workspace-root": "^2.0.0",
46
46
  "ts-jest": "~29.0.4",
47
47
  "typescript": "^5.8.3"
48
48
  },
49
- "gitHead": "f9236bc90dd9a04605c77070a2d06cb151c31c53"
49
+ "gitHead": "3cd208465df78e385ca9380531bbbfe33ca68e81"
50
50
  }
@@ -0,0 +1,16 @@
1
+ {
2
+ "extends": "@tsconfig/node18/tsconfig.json",
3
+ "compilerOptions": {
4
+ "target": "ES2022",
5
+ "module": "Node16",
6
+ "moduleResolution": "Node16",
7
+ "esModuleInterop": true,
8
+ "declaration": true,
9
+ "strict": true,
10
+ "useDefineForClassFields": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "noImplicitReturns": true,
13
+ "allowSyntheticDefaultImports": true,
14
+ "downlevelIteration": true
15
+ }
16
+ }