-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 678 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 678 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
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitThis": true,
"composite": true,
"emitDeclarationOnly": true,
"alwaysStrict": true,
"types": ["node"],
"esModuleInterop": true,
"skipLibCheck": true,
"incremental": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist-types",
"rootDir": ".",
"lib": ["ESNext.Promise", "ESNext", "DOM"]
},
"include": ["exports", "src", "exports/types", "docs"],
"exclude": ["dist-types", "dist", "**/generated.*"]
}