-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 582 Bytes
/
Copy pathtsconfig.json
File metadata and controls
23 lines (23 loc) · 582 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"sourceMap": true,
"declaration": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"types": ["node"],
"lib": ["ESNext"],
"noImplicitAny": true,
"strictNullChecks": true
},
"include": ["src/**/*", "src/**/*.d.ts"],
"exclude": ["node_modules", "dist", "build"]
}