-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 881 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 881 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
27
28
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom", "dom.iterable"],
"moduleResolution": "node",
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@webguard/core": ["packages/core/src"],
"@webguard/types": ["packages/types/src"],
"@webguard/utils": ["packages/utils/src"],
"@webguard/common": ["packages/common/src"],
"@webguard/performance": ["packages/plugins/performance/src"],
"@webguard/api-performance": ["packages/plugins/api-performance/src"]
}
},
"include": ["packages/**/*.ts", "global.d.ts"],
"exclude": ["**/dist", "**/node_modules"]
}