Fix out-esbuild build

This commit is contained in:
Daniel Imms
2024-07-10 13:42:14 -07:00
parent 444c07fd81
commit 31e0af745d
2 changed files with 9 additions and 2 deletions
+7 -1
View File
@@ -172,7 +172,13 @@ if (config.addon) {
};
outConfig = {
...outConfig,
entryPoints: ['src/**/*.ts'],
entryPoints: [
'src/browser/*.ts',
'src/common/*.ts',
'src/headless/*.ts',
'src/vs/base/*.ts',
'src/vs/patches/*.ts'
],
outdir: 'out-esbuild/'
};
outTestConfig = {
+2 -1
View File
@@ -7,7 +7,8 @@
],
"outDir": "../../out",
"types": [
"../../node_modules/@types/mocha"
"../../node_modules/@types/mocha",
"../vs/typings/thenable.d.ts"
],
"baseUrl": "..",
"paths": {