28 lines
783 B
JSON
28 lines
783 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"isolatedModules": true,
|
|
"paths": { /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
"@common/*": ["common/*"],
|
|
"@renderer/*": ["renderer/*"],
|
|
// "@lyric/*": ["renderer-lyric/*"],
|
|
"@static/*": ["static/*"],
|
|
"@/*": ["./*"],
|
|
},
|
|
"typeRoots": [ /* Specify multiple folders that act like './node_modules/@types'. */
|
|
"renderer/types"
|
|
],
|
|
},
|
|
// "vueCompilerOptions": {
|
|
// "plugins": [
|
|
// "@volar/vue-language-plugin-pug"
|
|
// ]
|
|
// }
|
|
// "include": [
|
|
// "./**/*.ts",
|
|
// // "./**/*.js",
|
|
// "./**/*.vue",
|
|
// "./**/*.json",
|
|
// ],
|
|
}
|