Skip to content

Commit a8f2cef

Browse files
committed
Add tsconfig file
1 parent 84db1f6 commit a8f2cef

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

tsconfig.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

Comments
 (0)