Files
tunarr/web/tsconfig.json
Christian Benincasa 7027efc000 feat: ability to manually add Plex servers (#622)
We've seen reports that the Plex server discovery functionality doesn't
always work. As a workaround, this feature will allow users to manually
enter Plex server details and add those servers to Tunarr.
2024-07-17 15:19:24 -04:00

52 lines
1.0 KiB
JSON

{
"compilerOptions": {
"rootDir": ".",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
"sourceMap": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": [
"./src/*"
]
}
},
"files": [
"vite.config.ts",
"vitest.config.ts",
"src/components/settings/plex/PlexServerRow.tsx",
"./src/components/settings/plex/PlexServerDeleteDialog.tsx",
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
],
"exclude": [
"./build/**/*",
"./dist/**/*",
"./src/**/*.ignore.ts"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}