mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-01-23 22:54:27 +00:00
1f642b45d6
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
43 lines
859 B
JSON
43 lines
859 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"removeComments": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"axios",
|
|
"@intlify/unplugin-vue-i18n/messages",
|
|
"unplugin-icons/types/vue",
|
|
"vite/client",
|
|
"vuetify",
|
|
"vue"
|
|
]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"strictTemplates": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.vue",
|
|
"**/**/*.json",
|
|
"types/**/*.d.ts",
|
|
".eslintrc.cjs",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|