mirror of
https://github.com/Viren070/tmdb-addon.git
synced 2025-12-01 23:18:11 +01:00
c529cbca7d
- Add age rating selection component with visual badges - Implement US certification filtering for movies and TV shows - Add certification parameters to TMDB API calls - Create age rating data structure with G, PG, PG-13, R, NC-17 ratings - Add info message about trending catalogs limitation - Handle certification filtering in discover and search endpoints This feature allows users to filter content based on US age ratings, helping them find appropriate content for their desired audience.
31 lines
695 B
JSON
31 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./configure/src/*"]
|
|
},
|
|
"types": ["vite/client", "react", "react-dom"]
|
|
},
|
|
"include": ["configure/src"]
|
|
}
|