Files
tmdb-addon/tsconfig.app.json
mrcanelas c529cbca7d feat: add age rating filter system
- 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.
2025-02-14 18:39:36 -03:00

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