lx-music-desktop/tsconfig.json

27 lines
893 B
JSON
Raw Normal View History

2022-10-29 03:36:35 +00:00
{
2023-05-19 14:01:18 +00:00
// https://github.com/tsconfig/bases#recommended-tsconfigjson
"extends": "@tsconfig/recommended/tsconfig.json",
2022-10-29 03:36:35 +00:00
"compilerOptions": {
2023-05-19 14:01:18 +00:00
"target": "ESNext",
"allowJs": true,
"module": "esnext",
"resolveJsonModule": true,
"moduleResolution": "nodenext",
"outDir": "./dist",
2022-10-29 03:36:35 +00:00
"baseUrl": "./src", /* Specify the base directory to resolve non-relative module names. */
2023-05-19 14:01:18 +00:00
// "paths": { /* Specify a set of entries that re-map imports to additional lookup locations. */
// "@common/*": ["common/*"],
// "@renderer/*": ["renderer/*"],
// "@main/*": ["main/*"],
// // "@lyric/*": ["renderer-lyric/*"],
// "@static/*": ["static/*"],
// "@/*": ["./*"],
// },
2022-10-29 03:36:35 +00:00
},
2023-06-27 10:58:51 +00:00
"vueCompilerOptions": {
"plugins": [
"@vue/language-plugin-pug"
]
}
2022-10-29 03:36:35 +00:00
}