mirror of
https://github.com/chenasraf/nextcloud-app-template.git
synced 2026-05-17 17:28:09 +00:00
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/*"
|
|
]
|
|
}
|
|
}
|
|
}
|