lx-music-desktop/tsconfig.json

22 lines
807 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",
"moduleResolution": "Node",
2023-08-28 05:39:23 +00:00
"resolveJsonModule": true,
2023-05-19 14:01:18 +00:00
"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/*"],
2023-08-07 07:17:52 +00:00
// "@root/*": ["./*"],
2023-05-19 14:01:18 +00:00
// },
2022-10-29 03:36:35 +00:00
},
}