mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
Fix build
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
7a24e2cc4d
commit
ebecd55b89
2 changed files with 33 additions and 0 deletions
10
src/types/vue-material-design-icons.d.ts
vendored
Normal file
10
src/types/vue-material-design-icons.d.ts
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
|
||||||
|
declare module 'vue-material-design-icons/VideoOff.vue';
|
||||||
|
declare module 'vue-material-design-icons/MenuDown.vue';
|
||||||
|
|
||||||
|
declare module '@nextcloud/vue/dist/Directives/Tooltip';
|
||||||
|
declare module '@nextcloud/vue/dist/Components/Button';
|
||||||
|
declare module '@nextcloud/vue/dist/Components/Actions';
|
||||||
|
declare module '@nextcloud/vue/dist/Components/ActionButton';
|
||||||
|
|
||||||
|
declare function t(app: string, string: string, vars?: { [key: string]: string }, count?: number, options?: EscapeOptions): string;
|
||||||
23
tsconfig.json
Normal file
23
tsconfig.json
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "./dist/",
|
||||||
|
"sourceMap": false,
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"module": "es6",
|
||||||
|
"target": "es5",
|
||||||
|
"paths": {
|
||||||
|
"@nextcloud/event-bus": [
|
||||||
|
"./node_modules/@nextcloud/event-bus/dist/index.js",
|
||||||
|
"./node_modules/@nextcloud/event-bus/dist/lib/*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"allowJs": true
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"src/**/*.ts"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"vendor"
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue