muse/tsconfig.json
Max Isom cf75afd4bc
Fix shuffle bug for long Spotify playlists
A random sample of 50 songs is taken for long playlists since mapping Spotify -> YouTube is expensive.
However, the function used previously allowed for duplicates within that sample of 50.
2021-05-30 15:01:11 -05:00

19 lines
407 B
JSON

{
"compilerOptions": {
"lib": ["ES2019"],
"target": "es2018",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"outDir": "dist",
"declarationDir": "dts",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"sourceMap": true
},
"include": ["src"],
"exclude": ["node_modules"]
}