2025-08-10 16:00:02 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "./bin",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
2025-08-13 13:07:40 +08:00
|
|
|
"composite": true,
|
2025-08-10 16:00:02 +08:00
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"bin",
|
|
|
|
|
"dist",
|
|
|
|
|
"tests",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
]
|
|
|
|
|
}
|