lx-music-desktop/jsconfig.json

18 lines
416 B
JSON
Raw Normal View History

2020-12-12 11:35:10 +00:00
{
"compilerOptions": {
2021-03-16 03:01:57 +00:00
"baseUrl": "./",
2020-12-12 11:35:10 +00:00
"paths": {
"@/*": ["src/*"],
2021-03-16 03:01:57 +00:00
"@main/*": ["src/main/*"],
"@renderer/*": ["src/renderer/*"],
"@lyric/*": ["src/renderer-lyric/*"],
"@static/*": ["src/static/*"],
"@common/*": ["src/common/*"],
},
},
"vueCompilerOptions": {
"experimentalDisableTemplateSupport": true
2020-12-12 11:35:10 +00:00
},
2021-03-16 03:01:57 +00:00
"exclude": ["node_modules", "build", "dist"]
2020-12-12 11:35:10 +00:00
}