-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
32 lines (30 loc) · 960 Bytes
/
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
{
"compilerOptions": {
"noEmit": true,
"lib": ["esnext"],
"module": "Node16",
"esModuleInterop": true,
"moduleResolution": "Node16",
"strict": true,
"target": "esnext",
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"allowJs": true,
// Disabled because they are covered by Eslint rules
"noUnusedLocals": false,
"noUnusedParameters": false,
// Disabled because prefer the property syntax
"noPropertyAccessFromIndexSignature": false
},
"exclude": ["dist/**/*", "coverage/**/*", "node_modules/**/*"],
"include": [
"**/*",
// Files/folders starting with "." are ignored by glob patters and need to be included explicitly. See:
// https://github.com/microsoft/TypeScript/issues/13399#issuecomment-271939777
".eslintrc.js"
]
}