jellyfin-vue/frontend/tsconfig.json
Fernando Fernández 87376e34ca refactor: simplify subtitle store
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2024-09-12 03:32:14 +02:00

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"]
}