-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 1.01 KB
/
Copy pathtsconfig.json
File metadata and controls
30 lines (30 loc) · 1.01 KB
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
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDeclarationOnly": false,
"composite": true,
"types": ["node"],
"paths": {
"@schmock/core": ["./packages/core/src"],
"@schmock/express": ["./packages/express/src"],
"@schmock/faker": ["./packages/faker/src"],
"@schmock/angular": ["./packages/angular/src"],
"@schmock/validation": ["./packages/validation/src"],
"@schmock/query": ["./packages/query/src"],
"@schmock/openapi": ["./packages/openapi/src"],
"@schmock/cli": ["./packages/cli/src"],
"@schmock/schmock": ["./packages/schmock/src"],
"@features/*": ["./features/*"]
}
},
"include": ["packages/**/*.ts", "tests/integration/**/*.ts"],
"exclude": ["node_modules", "dist", "**/*.steps.ts"]
}