-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
60 lines (60 loc) · 1.96 KB
/
tsconfig.json
File metadata and controls
60 lines (60 loc) · 1.96 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/graphql/queries": ["./apps/frontend/src/graphql/queries"],
"@/graphql/mutations": ["./apps/frontend/src/graphql/mutations"],
"@/auth-config": ["./libs/auth-config/src"],
"@/graphql": ["./libs/graphql/src"],
"@/tables": ["./libs/tables/src"],
"@/utils": ["./libs/utils/src"],
"@/event-bus": ["./libs/event-bus/src"],
"@/send-email": ["./libs/send-email/src"],
"@/settings": ["./libs/settings/src"],
"@/emails": ["./libs/emails/src"],
"@/business-logic": ["./libs/business-logic/src"],
"@/day-date": ["./libs/day-date/src"],
"@/holidays": ["./libs/holidays/src"],
"@/scheduler": ["./libs/scheduler/src"],
"@/scheduler-worker": ["./libs/scheduler-worker/src"],
"@/locales": ["./libs/locales/src"],
"@/docs/*": ["./docs/*"]
},
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"lib": ["esnext", "DOM", "DOM.Iterable", "WebWorker"],
"jsx": "react-jsx",
"strictNullChecks": true,
"noUnusedParameters": true,
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "./schema.graphql"
}
],
"rootDir": ".",
"outDir": "dist",
"typeRoots": ["node_modules/@types", "@types"],
"composite": true,
"incremental": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": false,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noErrorTruncation": true,
},
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.graphqls", "./**/*.graphql", "./**/package.json"],
"compileOnSave": true,
"exclude": ["node_modules", "dist", ".pnpm", "graphql.ts"]
}