/**
 *Name:tsconfig.json
 *Date:2024/7/23
 *Author:18355
 */
{
  "compilerOptions": {
    "target": "es2016",
    "module": "commonjs",
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "skipLibCheck": true,
    "noImplicitAny": false,
    //不允许不明确类型的this，默认为false
    "noImplicitThis": false,
    // 严格的检查空值
    "strictNullChecks": false
  },
  "display": "Recommended",
  "$schema": "https://json.schemastore.org/tsconfig"
}