Skip to content

Commit

Permalink
fix: set noEmit to true in tsconfig.build.json of all packages
Browse files Browse the repository at this point in the history
Signed-off-by: Anmol Sharma <[email protected]>
  • Loading branch information
theanmolsharma committed Apr 6, 2024
1 parent 5ddd3e7 commit 8b2c9cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/core/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": false,
"outDir": "../../dist/core"
"outDir": "../../dist/core",
"noEmit": false
},
"include": ["src/**/*"],
"exclude": ["**/*spec.ts"]
Expand Down
3 changes: 2 additions & 1 deletion packages/esplora/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": false,
"outDir": "../../dist/level"
"outDir": "../../dist/level",
"noEmit": false
},
"include": ["src/**/*"],
"exclude": ["**/*spec.ts"]
Expand Down
3 changes: 2 additions & 1 deletion packages/level/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": false,
"outDir": "../../dist/level"
"outDir": "../../dist/level",
"noEmit": false
},
"include": ["src/**/*"],
"exclude": ["**/*spec.ts"]
Expand Down
3 changes: 2 additions & 1 deletion packages/wallet/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": false,
"outDir": "../../dist/wallet"
"outDir": "../../dist/wallet",
"noEmit": false
},
"include": ["src/**/*"],
"exclude": ["**/*spec.ts"]
Expand Down

0 comments on commit 8b2c9cf

Please sign in to comment.