YesPlayMusic/packages/desktop/tsconfig.json

20 lines
408 B
JSON
Raw Normal View History

2022-03-13 14:40:38 +08:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"allowJs": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"strict": true,
"jsx": "react-jsx",
2022-08-03 23:48:39 +08:00
"baseUrl": "../",
"paths": {
2022-08-03 23:48:39 +08:00
"@/*": ["./*"]
}
2022-03-13 14:40:38 +08:00
},
2022-04-16 21:14:03 +08:00
"include": ["./**/*.ts", "../shared/**/*.ts"]
2022-03-13 14:40:38 +08:00
}