Skip to content

Commit 4b46559

Browse files
committed
ignore deprecations differently 2
1 parent f2c8f5a commit 4b46559

2 files changed

Lines changed: 0 additions & 9 deletions

File tree

packages/documentation/copy/en/handbook-v2/Modules.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,6 @@ export const twoPi = valueOfPi * 2;
392392
```ts twoslash
393393
// @showEmit
394394
// @module: umd
395-
// @moduleResolution: node
396-
// @resolveJsonModule: false
397395
// @noErrors
398396
import { valueOfPi } from "./constants.js";
399397

packages/tsconfig-reference/copy/en/options/module.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ export const twoPi = valueOfPi * 2;
3535
```ts twoslash
3636
// @showEmit
3737
// @module: umd
38-
// @moduleResolution: node
39-
// @resolveJsonModule: false
4038
// @noErrors
4139
import { valueOfPi } from "./constants";
4240

@@ -48,7 +46,6 @@ export const twoPi = valueOfPi * 2;
4846
```ts twoslash
4947
// @showEmit
5048
// @module: amd
51-
// @moduleResolution: node
5249
// @noErrors
5350
import { valueOfPi } from "./constants";
5451

@@ -60,8 +57,6 @@ export const twoPi = valueOfPi * 2;
6057
```ts twoslash
6158
// @showEmit
6259
// @module: system
63-
// @moduleResolution: node
64-
// @resolveJsonModule: false
6560
// @noErrors
6661
import { valueOfPi } from "./constants";
6762

@@ -124,8 +119,6 @@ While it’s rare to need to mix imports and require calls in the same file, thi
124119
```ts twoslash
125120
// @showEmit
126121
// @module: none
127-
// @moduleResolution: node
128-
// @resolveJsonModule: false
129122
// @noErrors
130123
import { valueOfPi } from "./constants";
131124

0 commit comments

Comments
 (0)