-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.jest.json
32 lines (32 loc) · 965 Bytes
/
tsconfig.jest.json
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
31
32
{
"compilerOptions": {
"strict": false,
"esModuleInterop": true,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": false,
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"target": "ESNext",
"module": "esnext",
"moduleResolution": "NodeNext",
"rootDir": "./",
"moduleDetection": "force",
"baseUrl": "./",
"allowImportingTsExtensions": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"resolveJsonModule": true,
"types": ["node", "jest"],
"paths": {
"@adaptate/core": ["./packages/core/src"],
"@adaptate/utils": ["./packages/utils/src"],
"@adaptate/utils/*": ["./packages/utils/src/*"],
"@adaptate/utils/openapi": ["./packages/utils/src/openapi.ts"]
}
},
"include": ["packages", "packages/core/src/**/*.ts"]
}