forked from femike/swagger-protect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig-check.json
28 lines (28 loc) · 955 Bytes
/
tsconfig-check.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
{
"compilerOptions": {
// strict
"strict": true,
"alwaysStrict": true,
"noEmitOnError": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"strictBindCallApply": true,
// lint
"noPropertyAccessFromIndexSignature": true, // eslint
"noFallthroughCasesInSwitch": true, // eslint no-fallthrough
"noUnusedLocals": true, // eslint no-unused-vars
"noUnusedParameters": true, // eslint no-unused-vars
"allowUnreachableCode": false, // eslint no-unreachable
"allowUnusedLabels": false, // eslint no-unused-labels
// Base Strict Checks
"noImplicitUseStrict": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"noStrictGenericChecks": false,
// https://esbuild.github.io/content-types/#isolated-modules
// "isolatedModules": true
}
}