-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (22 loc) · 739 Bytes
/
tsconfig.json
File metadata and controls
23 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"lib": ["ES2020", "DOM"],
"baseUrl": ".",
"paths": {
"javascript-proxy-headers": ["./types/index.d.ts"],
"javascript-proxy-headers/axios": ["./types/axios.d.ts"],
"javascript-proxy-headers/node-fetch": ["./types/node-fetch.d.ts"],
"javascript-proxy-headers/got": ["./types/got.d.ts"],
"javascript-proxy-headers/undici": ["./types/undici.d.ts"],
"javascript-proxy-headers/superagent": ["./types/superagent.d.ts"]
}
},
"include": ["test/types.test.ts"]
}