{
    "compilerOptions": {
      "target": "es2019",             /* 指定 ECMAScript 目标版本 */
      "module": "commonjs",           /* 指定模块代码生成 */
      "lib": ["es2019"],              /* 包含的库文件 */
      "outDir": "./dist",             /* 指定输出目录 */
      "rootDir": "./",                /* 指定根目录 */
      "strict": true,                 /* 启用所有严格类型检查选项 */
      "esModuleInterop": true,        /* 通过为所有导入创建命名空间对象，实现 CommonJS 和 ES 模块之间的兼容性 */
      "skipLibCheck": true,           /* 跳过声明文件的类型检查 */
      "forceConsistentCasingInFileNames": true, /* 确保文件名大小写一致 */
      "moduleResolution": "node",     /* 模块解析策略 */
      "declaration": true             /* 生成相应的 '.d.ts' 文件 */
    },
    "include": [
      "./CosUpload.node.ts",          /* 包含节点源文件 */
      "./TencentCosApi.credentials.ts" /* 包含凭证源文件 */
    ],
    "exclude": [
      "node_modules",
      "**/*.spec.ts"
    ]
  }