-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (26 loc) · 819 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
{
"compilerOptions": {
/* Language and Environment */
"target": "es2022",
"lib": ["es2022", "dom"],
/* Modules */
"module": "nodenext",
// "moduleResolution": "nodenext", // matches if module is node16 or nodenext
// "types": ["node"],
/* Emit */
"outDir": "dist",
"declaration": true,
"declarationMap": false,
"declarationDir": "dist",
"emitDeclarationOnly": false,
/* Interop Constraints */
"forceConsistentCasingInFileNames": true,
// "esModuleInterop": true, // true if module is node16 or nodenext
// "allowSyntheticDefaultImports": true, // true if esModuleInterop is enabled
/* Type Checking */
"strict": true,
/* Completeness */
"skipDefaultLibCheck": false
},
"include": ["src"]
}