-
-
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) · 844 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 844 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"exactOptionalPropertyTypes": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"newLine": "LF",
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"sourceMap": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strict": true,
"types": ["node"],
"verbatimModuleSyntax": true,
"outDir": "dist"
},
"include": ["src/**/*.ts", "src/**/*.test.ts", "src/**/*.mts", "src/**/*.test.mts", "bin.mjs"]
}