list-of-lp/tsconfig.json
m4x809 f9965b3782
Add "Living Things" album details, song links, and theme settings
- Introduced the album "Living Things" with its release date, description, and track list in list.ts.
- Updated song links in songLinks.ts to include streaming links for all tracks from the album.
- Enhanced fetched-songs.json to include tracks from "Living Things."
- Added new theme settings for "Living Things" in themes.ts.
- Updated TypeScript configuration and package dependencies for compatibility.
2026-01-11 21:06:21 +01:00

51 lines
992 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"types": [
"bun-types"
],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowJs": true,
"incremental": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": [
"./src/*"
]
},
"plugins": [
{
"name": "next"
}
],
"noEmit": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next\\dev/types/**/*.ts",
".next\\dev/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}