Skip to content

Commit

Permalink
🔧 Toggle on isolatedDeclarations flag on the project
Browse files Browse the repository at this point in the history
Fixes #5057
  • Loading branch information
dubzzz authored Jul 12, 2024
1 parent ed3dd61 commit 7382de9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.common.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"noEmit": true,
"declaration": false,
"declaration": true,
"isolatedDeclarations": true,
"incremental": false,
"sourceMap": true,
"target": "es2017",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.publish.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"noEmit": false,
"declaration": false,
"isolatedDeclarations": false,
"removeComments": true,
"sourceMap": false
}
Expand Down
1 change: 1 addition & 0 deletions tsconfig.publish.types.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"noEmit": false,
"declaration": true,
"emitDeclarationOnly": true,
"isolatedDeclarations": true,
"removeComments": false,
"sourceMap": false,
"stripInternal": true
Expand Down

0 comments on commit 7382de9

Please sign in to comment.