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

🔧 Toggle on isolatedDeclarations flag on the project #5136

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
5 changes: 4 additions & 1 deletion packages/fast-check/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "../../tsconfig.common.json"
"extends": "../../tsconfig.common.json",
"compilerOptions": {
"isolatedDeclarations": false
}
}
3 changes: 2 additions & 1 deletion packages/fast-check/tsconfig.publish.types.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "../../tsconfig.publish.types.json",
"compilerOptions": {
"outDir": "lib/types/"
"outDir": "lib/types/",
"isolatedDeclarations": false
},
"include": ["src/"]
}
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
Loading