Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-04-24 22:43:50 +0300
committerGitHub <noreply@github.com>2022-04-24 22:43:50 +0300
commitb0ed828fd21a05ff4cc5ff1a42c9b610b7b9b368 (patch)
treeb96523ce4eb55a96d6b5e7a024751666197521b4
parentdaef8036293985885dc838faeb1457d7287cdc10 (diff)
use absolute path for @types output directory so it does not change if plugins define their own tsconfig.json (#19138)
-rw-r--r--plugins/MobileMessaging/vue/dist/umd.metadata.json3
-rw-r--r--vue.config.js2
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/MobileMessaging/vue/dist/umd.metadata.json b/plugins/MobileMessaging/vue/dist/umd.metadata.json
index dce4477a3c..b0a1ba0ec5 100644
--- a/plugins/MobileMessaging/vue/dist/umd.metadata.json
+++ b/plugins/MobileMessaging/vue/dist/umd.metadata.json
@@ -1,6 +1,7 @@
{
"dependsOn": [
"CoreHome",
- "CorePluginsAdmin"
+ "CorePluginsAdmin",
+ "ScheduledReports"
]
} \ No newline at end of file
diff --git a/vue.config.js b/vue.config.js
index 18c0cbfa5c..79f7209ef9 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -110,7 +110,7 @@ module.exports = {
options.compilerOptions = {
declaration: true,
noEmit: false,
- outDir: `@types/${process.env.MATOMO_CURRENT_PLUGIN}`,
+ outDir: `${__dirname}/@types/${process.env.MATOMO_CURRENT_PLUGIN}`,
};
return options;
});