Skip to content

Commit c3bde8b

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 6f414fb commit c3bde8b

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

tsconfig.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "ES2020",
5+
"lib": [
6+
"es6",
7+
"es2018",
8+
"dom",
9+
"ES2019",
10+
"ES2020"
11+
],
12+
"sourceMap": true,
13+
"typeRoots": [
14+
"./node_modules/@types"
15+
],
16+
"rootDir": "src",
17+
"strict": true, /* enable all strict type-checking options */
18+
"types": [
19+
"chai-as-promised"
20+
],
21+
"experimentalDecorators": true,
22+
"allowSyntheticDefaultImports": true,
23+
"noImplicitAny": true,
24+
"noImplicitThis": true,
25+
"noUnusedLocals": true,
26+
"noUnusedParameters": true,
27+
"noFallthroughCasesInSwitch": true,
28+
"resolveJsonModule": true,
29+
"removeComments": true
30+
}
31+
}

0 commit comments

Comments
 (0)