Files
nextcloud-pantry/tsconfig.app.json
2026-04-05 21:50:17 +03:00

17 lines
423 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["src/env.d.ts", "src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"allowJs": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@icons/*": ["node_modules/vue-material-design-icons/*"],
"@/*": ["src/*"]
}
}
}