|
| 1 | +{ |
| 2 | + "compilerOptions": { |
| 3 | + "allowSyntheticDefaultImports": false, |
| 4 | + "allowUnreachableCode": false, |
| 5 | + "allowUnusedLabels": false, |
| 6 | + "alwaysStrict": true, |
| 7 | + "baseUrl": ".", |
| 8 | + "charset": "utf8", |
| 9 | + "forceConsistentCasingInFileNames": true, |
| 10 | + "keyofStringsOnly": false, |
| 11 | + "lib": [ |
| 12 | + "es5" |
| 13 | + ], |
| 14 | + "locale": "en", |
| 15 | + "module": "commonjs", |
| 16 | + "moduleResolution": "Node", |
| 17 | + "newLine": "lf", |
| 18 | + "noEmit": true, |
| 19 | + "noFallthroughCasesInSwitch": true, |
| 20 | + "noImplicitAny": true, |
| 21 | + "noImplicitReturns": false, |
| 22 | + "noImplicitThis": true, |
| 23 | + "noStrictGenericChecks": false, |
| 24 | + "noUnusedLocals": true, |
| 25 | + "noUnusedParameters": true, |
| 26 | + "paths": {}, |
| 27 | + "pretty": true, |
| 28 | + "strictBindCallApply": true, |
| 29 | + "strictFunctionTypes": true, |
| 30 | + "strictNullChecks": true, |
| 31 | + "suppressExcessPropertyErrors": false, |
| 32 | + "suppressImplicitAnyIndexErrors": false, |
| 33 | + "typeRoots": [ "." ], |
| 34 | + "types": [] |
| 35 | + }, |
| 36 | + "include": [ |
| 37 | + "**/docs/types/*.d.ts", |
| 38 | + "**/docs/types/test*.ts" |
| 39 | + ] |
| 40 | +} |
0 commit comments