forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 1.22 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": "lib/node_modules",
"checkJs": true,
"forceConsistentCasingInFileNames": true,
"keyofStringsOnly": false,
"lib": [
"es6"
],
"module": "commonjs",
"moduleResolution": "node",
"newLine": "lf",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {},
"pretty": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"typeRoots": [ "." ],
"types": []
},
"include": [
"docs/types/index.d.ts",
"docs/types/test.ts",
"lib/node_modules/**/docs/types/index.d.ts",
"lib/node_modules/**/docs/types/test.ts",
"lib/node_modules/**/@stdlib/types/index.d.ts",
"lib/node_modules/**/@stdlib/types/test.ts"
],
"exclude": [
"node_modules"
]
}