Fix addon resolve path

This commit is contained in:
Daniel Imms
2024-07-14 08:52:15 -07:00
parent ae8f2dd61a
commit 03c2b2f68e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ module.exports = {
alias: {
common: path.resolve('../../out/common'),
browser: path.resolve('../../out/browser'),
vs: path.resolve('./out/vs')
vs: path.resolve('../../out/vs')
}
},
output: {
+1 -1
View File
@@ -26,7 +26,7 @@ module.exports = {
extensions: [ '.js' ],
alias: {
common: path.resolve('../../out/common'),
vs: path.resolve('./out/vs')
vs: path.resolve('../../out/vs')
}
},
output: {
+1 -1
View File
@@ -27,7 +27,7 @@ module.exports = {
alias: {
common: path.resolve('../../out/common'),
browser: path.resolve('../../out/browser'),
vs: path.resolve('./out/vs')
vs: path.resolve('../../out/vs')
}
},
output: {