Skip to content

Commit

Permalink
fix(nextjs): do not build test file declarations (#4286)
Browse files Browse the repository at this point in the history
Co-authored-by: Bryce Kalow <[email protected]>
  • Loading branch information
jacekradko and BRKalow authored Oct 4, 2024
1 parent e11dbac commit 0d56455
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .changeset/young-llamas-prove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
13 changes: 7 additions & 6 deletions packages/nextjs/tsconfig.declarations.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"noEmit": false,
"declaration": true,
"emitDeclarationOnly": true,
"declarationDir": "./dist/types",
"declarationMap": true,
"sourceMap": false,
"declarationDir": "./dist/types"
}
"emitDeclarationOnly": true,
"noEmit": false,
"skipLibCheck": true,
"sourceMap": false
},
"exclude": ["**/__tests__/**/*"]
}

0 comments on commit 0d56455

Please sign in to comment.