2023-06-04 20:01:58 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-01-28 16:54:07 +08:00
|
|
|
"ignoreDeprecations": "6.0",
|
2023-06-04 20:01:58 +08:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2024-08-09 19:31:36 +08:00
|
|
|
"@/*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
],
|
|
|
|
|
"@cps/*": [
|
|
|
|
|
"src/components/*"
|
|
|
|
|
]
|
2023-06-04 20:01:58 +08:00
|
|
|
},
|
|
|
|
|
"jsx": "preserve"
|
|
|
|
|
},
|
2024-08-09 19:31:36 +08:00
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"build"
|
|
|
|
|
]
|
2026-01-28 16:54:07 +08:00
|
|
|
}
|