mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-29 14:12:21 +00:00

+ reduce width required to hide sidebar automatically + move ArtistAlbumsFetcher.vue to components folder + escape ALT button in keyboard shortcuts + use elem.dispatchEvent to toggle page search
25 lines
629 B
JSON
25 lines
629 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": false,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
// "noEmit": true,
|
|
"paths": {
|
|
"baseUrl": ["./"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue", "src/**/*.svg"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|