2022-11-22 00:24:06 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-06-22 14:36:02 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "es2020",
|
2025-08-05 19:53:58 +08:00
|
|
|
"types": ["node"],
|
|
|
|
|
"lib": ["es2020", "dom"],
|
2022-11-22 00:24:06 +08:00
|
|
|
"esModuleInterop": true,
|
2023-06-22 14:36:02 +08:00
|
|
|
"resolveJsonModule": true,
|
2022-11-22 00:24:06 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-12-12 20:18:41 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
2022-11-22 00:24:06 +08:00
|
|
|
"noImplicitAny": true,
|
2023-06-22 14:36:02 +08:00
|
|
|
"moduleResolution": "node",
|
2022-11-22 00:24:06 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2025-08-05 19:53:58 +08:00
|
|
|
"@/*": ["bin/*"]
|
2022-11-22 00:24:06 +08:00
|
|
|
}
|
|
|
|
|
},
|
2025-08-05 19:53:58 +08:00
|
|
|
"include": ["bin/**/*"]
|
2022-11-22 00:24:06 +08:00
|
|
|
}
|