2025-08-23 13:20:01 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
|
"resolvePackageJsonExports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"target": "ES2023",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictBindCallApply": true,
|
2025-08-27 11:24:22 +08:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@wwj/*": ["src/*"],
|
|
|
|
|
"@wwjCore": ["src/core/base/index.ts"],
|
|
|
|
|
"@wwjCore/*": ["src/core/*"],
|
|
|
|
|
"@wwjConfig": ["src/config/index.ts"],
|
|
|
|
|
"@wwjConfig/*": ["src/config/*"],
|
|
|
|
|
"@wwjCommon": ["src/common/index.ts"],
|
|
|
|
|
"@wwjCommon/*": ["src/common/*"],
|
|
|
|
|
"@wwjVendor": ["src/vendor/index.ts"],
|
|
|
|
|
"@wwjVendor/*": ["src/vendor/*"]
|
|
|
|
|
}
|
2025-08-23 13:20:01 +08:00
|
|
|
}
|
|
|
|
|
}
|