-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (35 loc) · 952 Bytes
/
tsconfig.json
File metadata and controls
36 lines (35 loc) · 952 Bytes
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
33
34
35
36
{
/* Visit https://aka.ms/tsconfig to read more about this file */
"include": ["src/**/*"],
"exclude": [
"node_modules",
"dist"
],
"compilerOptions": {
// Type Checking
"isolatedModules": true,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": false, // TODO: Enable and fix all the array access errors
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
// Language and Environment
"target": "es2016",
"lib": ["es2016"],
// Modules
"module": "node16",
"types": ["node", "jest"],
// Interop Constraints
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Completeness
"skipLibCheck": true,
// Emit
"declaration": true,
"declarationMap": false,
}
}