@@ -76,15 +76,15 @@ generation, and by replacing inline types with whitespace, Node.js can run
|
76 | 76 | TypeScript code without the need for source maps. |
77 | 77 | |
78 | 78 | Type stripping is compatible with most versions of TypeScript |
79 | | -but we recommend version 5.7 or newer with the following `tsconfig.json` settings: |
| 79 | +but we recommend version 5.8 or newer with the following `tsconfig.json` settings: |
80 | 80 | |
81 | 81 | ```json |
82 | 82 | { |
83 | 83 | "compilerOptions": { |
84 | 84 | "target": "esnext", |
85 | 85 | "module": "nodenext", |
86 | | -"allowImportingTsExtensions": true, |
87 | 86 | "rewriteRelativeImportExtensions": true, |
| 87 | +"erasableSyntaxOnly": true, |
88 | 88 | "verbatimModuleSyntax": true |
89 | 89 | } |
90 | 90 | } |
|