Skip to content

Commit 7511dc1

Browse files
author
devgioele
committed
do not make typescript find unused symbols
1 parent dcad5ac commit 7511dc1

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

tsconfig.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
"esModuleInterop": true,
66
"resolveJsonModule": true,
77
"strict": true,
8-
"noUnusedLocals": true,
9-
"noUnusedParameters": true,
108
"noImplicitReturns": true,
119
"noImplicitOverride": true,
1210
"noFallthroughCasesInSwitch": true,
@@ -22,6 +20,12 @@
2220
"sourceMap": true,
2321
"skipLibCheck": true
2422
},
25-
"include": ["src"],
26-
"exclude": ["node_modules", "**/__test__/*", "**/__tests__/*"]
23+
"include": [
24+
"src"
25+
],
26+
"exclude": [
27+
"node_modules",
28+
"**/__test__/*",
29+
"**/__tests__/*"
30+
]
2731
}

0 commit comments

Comments
 (0)