mirror of
https://github.com/maotoumao/MusicFreeDesktop.git
synced 2026-09-03 07:18:13 +08:00
27 lines
648 B
JSON
27 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"target": "ES2021",
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"*": ["node_modules/*"],
|
|
"@/*": ["src/*"],
|
|
"@main/*": ["src/main/*"],
|
|
"@shared/*": ["src/shared/*"],
|
|
"@native/*": ["src/main/native_modules/*"],
|
|
"@renderer/*": ["src/renderer/*"],
|
|
"@renderer-lrc/*": ["src/renderer-lrc/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|