Skip to content
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
# The Vercel serverless functions in api/ live outside the pnpm workspace,
# so turbo doesn't cover them — typecheck them explicitly.
- run: pnpm typecheck:api
- name: Verify apps/api build output is flat
run: |
pnpm --filter @meridian/api build
test -f apps/api/dist/index.js
test:
name: Test
Expand Down
14 changes: 4 additions & 10 deletions apps/api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,9 @@
"compilerOptions": {
"lib": ["ES2020"],
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"rootDir": "../..",
"outDir": "dist",
"paths": {
"@meridian/shared": ["../../packages/shared/src"],
"@meridian/stellar-sdk-helpers": [
"../../packages/stellar-sdk-helpers/src"
]
}
"rootDir": "src",
"outDir": "dist"
},
"include": ["src"]
"include": ["src"],
"exclude": ["src/**/*.test.ts"]
}