-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.24 KB
/
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
33
34
35
36
37
38
39
40
41
42
{
"display": "Node 22",
"compilerOptions": {
"target": "ES2023",
"declaration": true, // https://www.typescriptlang.org/tsconfig#declaration
//
"module": "NodeNext", // https://www.typescriptlang.org/tsconfig#module
"moduleDetection": "force", // https://www.typescriptlang.org/tsconfig#moduleDetection
"moduleResolution": "NodeNext", // https://www.typescriptlang.org/tsconfig#moduleResolution
"lib": [
"ES2023",
"DOM",
"DOM.Iterable"
],
//
"strict": true,
"outDir": "dist",
"newLine": "lf",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true, // allows default imports for CommonJS packages - https://www.typescriptlang.org/tsconfig#allowSyntheticDefaultImports
"esModuleInterop": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"removeComments": false,
"resolveJsonModule": true,
"strictNullChecks": true,
"allowUnreachableCode": false,
"skipLibCheck": true,
},
//
// "include": [
// "./**/*"
// ],
// "exclude": [
// "./node_modules",
// "./dist"
// ]
}