Skip to content

Commit

Permalink
no need for .d.ts or .map for test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 12, 2024
1 parent f2a11b9 commit 6d7b6c8
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 16 deletions.
2 changes: 0 additions & 2 deletions test/fixtures/basic.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/basic.d.ts.map

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,3 @@ switch (process.argv[2]) {
parentMain();
break;
}
//# sourceMappingURL=basic.js.map
1 change: 0 additions & 1 deletion test/fixtures/basic.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions test/fixtures/change-exit.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/change-exit.d.ts.map

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/change-exit.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ switch (process.argv[2]) {
child(String(process.argv[3]));
break;
}
//# sourceMappingURL=change-exit.js.map
1 change: 0 additions & 1 deletion test/fixtures/change-exit.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions test/fixtures/immortal-child.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/immortal-child.d.ts.map

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/immortal-child.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ switch (process.argv[2]) {
parent();
break;
}
//# sourceMappingURL=immortal-child.js.map
1 change: 0 additions & 1 deletion test/fixtures/immortal-child.js.map

This file was deleted.

9 changes: 8 additions & 1 deletion test/fixtures/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
{
"extends": "../../tsconfig.json",
"include": ["./*.ts"]
"include": ["./*.ts"],
"compilerOptions": {
"inlineSources": false,
"inlineSourceMap": false,
"declaration": false,
"sourceMap": false,
"declarationMap": false
}
}

0 comments on commit 6d7b6c8

Please sign in to comment.