|
1 | 1 | {
|
2 |
| - "exclude": [ |
3 |
| - "./dist/" |
4 |
| - ], |
5 | 2 | "include": [
|
6 |
| - "./src/**/*.ts" |
| 3 | + "./src/" |
7 | 4 | ],
|
8 | 5 | "compilerOptions": {
|
9 | 6 | "module": "commonjs",
|
|
15 | 12 | "strictNullChecks": false,
|
16 | 13 | "noImplicitThis": true,
|
17 | 14 | "rootDir": "./src/",
|
18 |
| - "rootDirs": [ |
19 |
| - "./src/", |
20 |
| - "./tests/" |
21 |
| - ], |
| 15 | + "rootDirs": [], |
22 | 16 | "allowJs": false,
|
23 | 17 | "allowUnreachableCode": false,
|
24 | 18 | "allowUnusedLabels": false,
|
|
27 | 21 | "charset": "utf8",
|
28 | 22 | "declaration": true,
|
29 | 23 | "inlineSourceMap": false,
|
30 |
| - "allowSyntheticDefaultImports": false, |
| 24 | + "esModuleInterop": true, |
| 25 | + "allowSyntheticDefaultImports": true, |
31 | 26 | "diagnostics": false,
|
32 | 27 | "emitBOM": false,
|
33 | 28 | "forceConsistentCasingInFileNames": false,
|
34 | 29 | "importHelpers": false,
|
35 | 30 | "inlineSources": false,
|
36 | 31 | "isolatedModules": false,
|
37 | 32 | "lib": [
|
38 |
| - // "es6", |
39 | 33 | "esnext"
|
40 | 34 | ],
|
| 35 | + "listFiles": false, |
| 36 | + "listEmittedFiles": false, |
41 | 37 | "locale": "zh_CN",
|
42 |
| - "newLine": "CRLF", |
43 |
| - "noEmit": true, |
| 38 | + "newLine": "lf", |
| 39 | + "noEmit": false, |
44 | 40 | "moduleResolution": "node",
|
45 | 41 | "noEmitHelpers": false,
|
46 | 42 | "noEmitOnError": false,
|
|
49 | 45 | "maxNodeModuleJsDepth": 0,
|
50 | 46 | "noLib": false,
|
51 | 47 | "outDir": "./dist",
|
52 |
| - // "outFile": "./dist/tqf", |
53 | 48 | "noFallthroughCasesInSwitch": false,
|
54 | 49 | "noResolve": false,
|
55 |
| - "noUnusedLocals": false, |
56 |
| - "noUnusedParameters": false, |
| 50 | + "noUnusedLocals": true, |
| 51 | + "noUnusedParameters": true, |
57 | 52 | "paths": {},
|
58 | 53 | "preserveConstEnums": false,
|
59 | 54 | "pretty": true,
|
60 |
| - // "mapRoot": "", |
61 | 55 | "removeComments": false,
|
62 |
| - "skipDefaultLibCheck": true, // default false |
63 |
| - "skipLibCheck": true, // default false |
| 56 | + "skipDefaultLibCheck": true, |
| 57 | + "skipLibCheck": true, |
64 | 58 | "stripInternal": false,
|
65 | 59 | "suppressExcessPropertyErrors": false,
|
66 |
| - "suppressImplicitAnyIndexErrors": true, // default false |
| 60 | + "suppressImplicitAnyIndexErrors": true, |
| 61 | + "traceResolution": false, |
67 | 62 | "typeRoots": [],
|
68 | 63 | "types": [
|
69 | 64 | "node"
|
|
0 commit comments