Files
spotizerr-dev/tsconfig.json
2025-06-07 18:47:18 +02:00

26 lines
500 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"module": "ES2020",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./static/js",
"rootDir": "./src/js"
},
"include": [
"src/js/**/*.ts",
"src/js/album.ts",
"src/js/artist.ts",
"src/js/config.ts",
"src/js/main.ts",
"src/js/playlist.ts",
"src/js/queue.ts",
"src/js/track.ts"
],
"exclude": [
"node_modules"
]
}