2024-06-25 21:59:50 +08:00
|
|
|
{
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
"display": "Base",
|
|
|
|
"compilerOptions": {
|
2025-01-24 14:26:30 +08:00
|
|
|
"incremental": true,
|
|
|
|
"target": "esnext",
|
2024-06-25 21:59:50 +08:00
|
|
|
"strict": true,
|
|
|
|
"alwaysStrict": true,
|
2025-01-24 14:26:30 +08:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictBindCallApply": false,
|
2024-06-25 21:59:50 +08:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
2025-01-24 14:26:30 +08:00
|
|
|
"noImplicitAny": true,
|
2024-06-25 21:59:50 +08:00
|
|
|
"noUnusedLocals": true,
|
2025-01-24 14:26:30 +08:00
|
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2024-06-25 21:59:50 +08:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"pretty": true,
|
2025-01-24 14:26:30 +08:00
|
|
|
"isolatedModules": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
2024-06-25 21:59:50 +08:00
|
|
|
}
|
|
|
|
}
|