mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
- Added a new script command "fetch-links" to package.json for fetching song links. - Updated tsconfig.json to include "bun-types" in the types array. - Removed the VIEW_TRANSITIONS_GUIDE.md file. - Modified album track IDs to be more descriptive and added Spotify URLs for each track in list.ts. - Updated ListTypes.ts to include a new field for Spotify URLs in the Track type. - Cleaned up the AlbumDetail component by removing commented-out code for the album header.
40 lines
825 B
JSON
40 lines
825 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"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|