-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
38 lines (38 loc) · 991 Bytes
/
tsconfig.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
33
34
35
36
37
38
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"declaration": true,
"composite": true,
"incremental": true,
"strict": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"useDefineForClassFields": true,
"baseUrl": ".",
"paths": {
"@hatchifyjs/core": ["./packages/core/dist"],
"@hatchifyjs/crypto": ["./packages/crypto"],
"@hatchifyjs/node": ["./packages/node/dist"]
}
},
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.test.ts",
"**/mocks/**/*",
"**/setupTests.ts",
"**/testing/**/*"
]
}