esm - fix transpile

This commit is contained in:
Benjamin Pasero
2024-09-27 08:32:14 +02:00
parent 16fd920b99
commit 3b8c31c64a
3 changed files with 20 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ class OutputFileNameOracle {
catch (err) {
console.error(file, cmdLine.fileNames);
console.error(err);
throw new err;
throw err;
}
};
}

View File

@@ -84,7 +84,7 @@ class OutputFileNameOracle {
} catch (err) {
console.error(file, cmdLine.fileNames);
console.error(err);
throw new err;
throw err;
}
};
}

View File

@@ -26,7 +26,25 @@
]
},
"include": [
"./bootstrap-esm.ts",
"./bootstrap-cli.ts",
"./bootstrap-fork.ts",
"./bootstrap-import.ts",
"./bootstrap-meta.ts",
"./bootstrap-node.ts",
"./bootstrap-server.ts",
"./bootstrap-window.js",
"./cli.ts",
"./main.ts",
"./server-main.ts",
"./server-cli.ts",
"./vs/base/common/jsonc.ts",
"./vs/base/common/performance.ts",
"./vs/base/node/unc.ts",
"./vs/base/node/nls.ts",
"./vs/platform/environment/node/userDataPath.ts",
"./vs/base/parts/sandbox/electron-sandbox/preload-aux.ts",
"./vs/base/parts/sandbox/electron-sandbox/preload.ts",
"./vs/code/electron-sandbox/processExplorer/processExplorer.js",
"./vs/code/electron-sandbox/workbench/workbench.js",
"./vs/workbench/contrib/issue/electron-sandbox/issueReporter.js",