-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 813 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 813 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
{
"extends": ["@tsconfig/node20"],
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedDeclarations": true,
"moduleResolution": "node16",
"newLine": "LF",
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": false, // This is picked up by eslint
"noUnusedParameters": false, // This is picked up by eslint
"outDir": "dist",
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true
},
"include": ["src"]
}