mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
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.
52 lines
1.0 KiB
JSON
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"
|
|
}
|
|
]
|
|
} |