-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
33 lines (33 loc) · 1.34 KB
/
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
{
"root": true,
"extends": "@fullstacksjs/tsconfig/react",
"compilerOptions": {
"target": "ESNext",
"esModuleInterop": true,
"types": ["cypress", "@testing-library/cypress"],
"paths": {
"@camp/file-storage-client": ["./libs/file-storage-client/index.ts"],
"@camp/api-client": ["./libs/api-client/index.ts"],
"@camp/auth": ["./libs/auth/index.ts"],
"@camp/fixtures": ["./libs/fixtures/index.ts"],
"@camp/config": ["./libs/config/index.ts"],
"@camp/cookies": ["./libs/cookies/index.ts"],
"@camp/data-layer": ["./libs/data-layer/index.ts"],
"@camp/debug": ["./libs/debug/index.ts"],
"@camp/design": ["./libs/design/index.ts"],
"@camp/domain": ["./libs/domain/index.ts"],
"@camp/hooks": ["./app/hooks/index.ts"],
"@camp/icons": ["./libs/icons/index.ts"],
"@camp/infra": ["./libs/infra/index.ts"],
"@camp/messages": ["./app/messages.ts"],
"@camp/router": ["./libs/router/index.ts"],
"@camp/test": ["./libs/test/index.ts"],
"@camp/zod-addons": ["./libs/zod-addons/index.ts"],
"@camp/zod-addons/monkey-patch": ["./libs/zod-addons/monkeyPatchZod.ts"]
}
},
"files": ["cypress/support/commands/index.d.ts"],
"include": ["app", "libs", "@types/index.d.ts"],
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.vite.json" }]
}