UNPKG

1.65 kBJSONView Raw
1{
2 "compilerOptions": {
3 // "incremental": true, /* 增量编译 提高编译速度*/
4 "target": "ES2019" /* 编译目标ES版本*/,
5 "module": "commonjs" /* 编译目标模块系统*/,
6 // "lib": [], /* 编译过程中需要引入的库文件列表*/
7 "declaration": true /* 编译时创建声明文件 */,
8 "outDir": "tencentcloud" /* ts编译输出目录 */,
9 "rootDir": "src" /* ts编译根目录. */,
10 "importHelpers": true /* 从tslib导入辅助工具函数(如__importDefault)*/,
11 "strict": true /* 严格模式开关 等价于noImplicitAny、strictNullChecks、strictFunctionTypes、strictBindCallApply等设置true */,
12 "strictNullChecks": false,
13 "noUnusedLocals": false /* 未使用局部变量报错*/,
14 "noUnusedParameters": false /* 未使用参数报错*/,
15 "noImplicitReturns": true /* 有代码路径没有返回值时报错*/,
16 "noFallthroughCasesInSwitch": true /* 不允许switch的case语句贯穿*/,
17 "moduleResolution": "node" /* 模块解析策略 */,
18 "typeRoots": [
19 /* 要包含的类型声明文件路径列表*/
20 "./typings",
21 "./node_modules/@types"
22 ],
23 "allowSyntheticDefaultImports": true /* 允许从没有设置默认导出的模块中默认导入,仅用于提示,不影响编译结果*/,
24 "esModuleInterop": false /* 允许编译生成文件时,在代码中注入工具类(__importDefault、__importStar)对ESM与commonjs混用情况做兼容处理*/,
25 "sourceMap": false
26 },
27 "include": [
28 /* 需要编译的文件 */
29 "src/**/*.ts",
30 "typings/**/*.ts"
31 ],
32 "exclude": []
33}