YouTube WIP (#5)

YouTube downloader and searcher added
This commit is contained in:
C++, JS, TS, Python Developer
2021-08-13 15:17:35 +05:30
committed by GitHub
parent 408a745cc5
commit 398b89a707
16 changed files with 1250 additions and 0 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"strict": true,
"moduleResolution": "node",
"removeComments": false,
"alwaysStrict": true,
"pretty": true,
"target": "es2019",
"lib": ["ESNext"],
"sourceMap": true,
"inlineSources": true,
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"incremental": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["node-youtube-dl/**/**/*.ts"],
"exclude": ["node-youtube-dl/**/__tests__"]
}