youtube-downloader

Simple Next.js website and interface to download YouTube videos to mp3 or mp4 files with URLs
git clone https://codeberg.org/night0721/youtube-downloader
Log | Files | Refs | README | LICENSE

tsconfig.json (623B)


      1 {
      2   "compilerOptions": {
      3     "target": "es5",
      4     "lib": ["dom", "dom.iterable", "esnext"],
      5     "allowJs": true,
      6     "skipLibCheck": true,
      7     "strict": true,
      8     "forceConsistentCasingInFileNames": true,
      9     "noEmit": true,
     10     "esModuleInterop": true,
     11     "module": "esnext",
     12     "moduleResolution": "node",
     13     "resolveJsonModule": true,
     14     "isolatedModules": true,
     15     "jsx": "preserve",
     16     "incremental": true,
     17     "paths": {
     18       "@/*": ["./src/*"]
     19     }
     20   },
     21   "include": [
     22     "next-env.d.ts",
     23     "**/*.ts",
     24     "**/*.tsx",
     25     "postcss.config.js",
     26     "tailwind.config.js"
     27   ],
     28   "exclude": ["node_modules"]
     29 }