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>2021-10-06 22:39:26 +0300
committerGitHub <noreply@github.com>2021-10-06 22:39:26 +0300
commite105c3b45a79cb892d515085369e190bb48fe63c (patch)
tree12e748bc2b63e4bc85d147edc1e38c2f3c9c293c /tsconfig.json
parentfe3a4a648fd421757fa3bf43bf3f89d85506a4ad (diff)
[Vue] fix error in tsconfig.json (include matching no files) (#18102)
* add global definitions file to tsconfig.json since typescript will complain if include matches nothing, even if a specific entry script is given * rebuild everything * rebuild everything
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json1
1 files changed, 1 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 3b02e3aca1..65fa6f699c 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -35,6 +35,7 @@
]
},
"include": [
+ "./plugins/CoreVue/types/index.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"