forked from imsyy/SPlayer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
27 lines (27 loc) · 790 Bytes
/
tsconfig.web.json
File metadata and controls
27 lines (27 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"include": [
"src/env.d.ts",
"src/**/*",
"src/**/*.vue",
"electron/main/index.d.ts",
"electron/preload/index.d.ts",
"dist/lastfm.ts"
],
"compilerOptions": {
"composite": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"maxNodeModuleJsDepth": 2,
"paths": {
"@/*": ["./src/*"],
"@emi": ["./native/external-media-integration"],
"@native/*": ["./native/*"],
"@opencc": ["./native/ferrous-opencc-wasm/pkg"],
"@shared": ["./src/types/shared"]
},
"types": ["node", "electron", "electron-vite/node", "./auto-imports.d.ts", "./components.d.ts"],
"lib": ["ES2022", "DOM", "DOM.Iterable", "WebWorker"],
"target": "es2022"
}
}