swingmusic/tsconfig.json
geoffrey45 26ab972a8d fix fuzzy search: FuseTrackOptions
+ 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
2023-01-13 18:13:49 +03:00

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" }]
}