Files
swingmusic-extended/tsconfig.json
T
geoffrey45 62b9aa7a3e Redesign page search input area
+ redefine global search input colors
+ redesign settings page
+ move settings text to a strings module
+ add title and description to now playing settings
2023-01-13 18:13:49 +03:00

24 lines
605 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"paths": {
"baseUrl": ["./"],
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue", "src/**/*.svg"],
"references": [{ "path": "./tsconfig.node.json" }]
}