forked from imsyy/SPlayer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
29 lines (29 loc) · 890 Bytes
/
tsconfig.web.json
File metadata and controls
29 lines (29 loc) · 890 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
28
29
{
"compilerOptions": {
"composite": true,
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable", "WebWorker"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
"esModuleInterop": true,
"maxNodeModuleJsDepth": 2,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@emi": ["./native/external-media-integration"],
"@native/*": ["./native/*"],
"@opencc": ["./native/ferrous-opencc-wasm/pkg"],
"@shared": ["./src/types/shared"]
},
"types": ["node", "./auto-imports.d.ts", "./components.d.ts"]
},
"include": ["src/env.d.ts", "src/**/*", "src/**/*.vue", "dist/lastfm.ts"]
}