mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-03 11:41:09 +00:00
87376e34ca
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "Preserve",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"useDefineForClassFields": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"noErrorTruncation": true,
|
|
"experimentalDecorators": true,
|
|
"removeComments": true,
|
|
"verbatimModuleSyntax": true,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "../node_modules/.cache/tsconfig.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"axios",
|
|
"@intlify/unplugin-vue-i18n/messages",
|
|
"unplugin-icons/types/vue",
|
|
"unplugin-vue-router/client",
|
|
"vite/client",
|
|
"vuetify",
|
|
"vue"
|
|
]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"htmlAttributes": ["aria-*", "data-*"],
|
|
"fallthroughAttributes": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.vue",
|
|
"**/**/*.json",
|
|
"types/**/*.d.ts",
|
|
"*.config.*"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|