2026-03-27 22:20:25 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"target": "ES2021",
|
|
|
|
|
"lib": ["ES2021"],
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strictNullChecks": false,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|