Skip to content

Commit e27730f

Browse files
committed
fix: ensure expo config plugin is built
1 parent c0f2918 commit e27730f

6 files changed

Lines changed: 31 additions & 2 deletions

File tree

build_error.log

452 Bytes
Binary file not shown.

build_output.txt

312 Bytes
Binary file not shown.

build_output_nodenext.txt

1.29 KB
Binary file not shown.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@
3939
"test": "jest --passWithNoTests",
4040
"typecheck": "tsc",
4141
"lint": "eslint \"**/*.{js,ts,tsx}\"",
42-
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
43-
"prepare": "bob build",
42+
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib plugin/build",
43+
"prepare": "bob build && npm run build:plugin",
44+
"build:plugin": "tsc --build plugin/tsconfig.json",
4445
"release": "release-it --only-version",
4546
"run-dev": "cd example/android && gradlew clean && cd ../../ && yarn prepare && yarn example android"
4647
},

plugin/tsconfig.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"compilerOptions": {
3+
"allowUnreachableCode": false,
4+
"allowUnusedLabels": false,
5+
"esModuleInterop": true,
6+
"forceConsistentCasingInFileNames": true,
7+
"lib": ["ESNext"],
8+
"module": "commonjs",
9+
"moduleResolution": "node",
10+
"noEmit": false,
11+
"noFallthroughCasesInSwitch": true,
12+
"noImplicitReturns": true,
13+
"noImplicitUseStrict": false,
14+
"noStrictGenericChecks": false,
15+
"noUncheckedIndexedAccess": true,
16+
"noUnusedLocals": true,
17+
"noUnusedParameters": true,
18+
"outDir": "build",
19+
"resolveJsonModule": true,
20+
"rootDir": "src",
21+
"skipLibCheck": true,
22+
"strict": true,
23+
"target": "ES2019"
24+
},
25+
"include": ["src/**/*"],
26+
"exclude": ["src/**/__tests__/*", "src/**/__mocks__/*"]
27+
}

plugin/tsconfig.tsbuildinfo

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"root":["./src/index.ts"],"version":"5.9.3"}

0 commit comments

Comments
 (0)