Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dist folder not being generated #302

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ dist

# IDE
.idea

tsconfig.tsbuildinfo
4 changes: 2 additions & 2 deletions fixture/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
boost: 7dcd2de282d72e344012f7d6564d024930a6a440
boost: 57d2868c099736d80fcd648bf211b4431e51a558
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
FBLazyVector: a31ac2336aea59512b5b982f8e231f65d7d148e1
FBReactNativeSpec: 0976da6bc1ebd3ea9b3a65d04be2c0117d304c4c
Expand Down Expand Up @@ -578,4 +578,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: a12b35c724cb1bdee90e7aa425ae51bb9b251d22

COCOAPODS: 1.14.3
COCOAPODS: 1.15.2
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"composite": true,
"outDir": "./dist",
"baseUrl": "./src",
"rootDir": "./src"
"rootDir": "./src",
"noEmit": false
},
"extends": "./shared/tsconfig.base.json",
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
Expand Down
Loading