We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d5ece commit ab99a73Copy full SHA for ab99a73
src/transpilation/transpile.ts
@@ -103,7 +103,7 @@ export function getProgramTranspileResult(
103
options.noEmit = false;
104
105
const writeFile: ts.WriteFileCallback = (fileName, ...rest) => {
106
- if (!fileName.endsWith(".js") && !fileName.endsWith(".js.map")) {
+ if (!fileName.endsWith(".js") && !fileName.endsWith(".js.map") && !fileName.endsWith(".json")) {
107
writeFileResult(fileName, ...rest);
108
}
109
};
0 commit comments