forked from lyswhut/lx-music-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
21 lines (21 loc) · 807 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
// https://github.com/tsconfig/bases#recommended-tsconfigjson
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"allowJs": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"outDir": "./dist",
"baseUrl": "./src", /* Specify the base directory to resolve non-relative module names. */
// "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/*"],
// "@root/*": ["./*"],
// },
},
}