mirror of
https://github.com/chenasraf/nextcloud-autocurrency.git
synced 2026-05-17 17:28:06 +00:00
* feat: add custom currency table & endpoints * refactor: fix migration versions * feat: add custom currencies logic to fetch service * feat: add custom currencies UI to admin settings * feat: add custom currencies to user settings history * chore: update admin settings help info * refactor: use NcTextField instead of input
25 lines
442 B
JSON
25 lines
442 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"src/env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.vue"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"@icons/*": [
|
|
"node_modules/vue-material-design-icons/*"
|
|
],
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|