-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
34 lines (34 loc) · 1.14 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
34
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2020",
"lib": ["dom", "dom.iterable", "ESNext"],
"strict": true,
"esModuleInterop": true,
"sourceMap": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"preserveWatchOutput": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": ["vite/client", "@vue-macros/reactivity-transform/macros-global"],
"paths": {
"~/*": ["./src/*"],
"~translations/*": ["./translations/*"],
"~types/*": ["./types/*"],
"~dm-types/*": ["../../packages/types/*"],
"~dm-services/*": ["../../packages/api/services/*"],
"~group-by": ["../../util/group-by"],
"~prisma-schemas/*": ["../../packages/prisma-schemas/*"],
"~socket.io-client-services/*": ["../../packages/socket.io-client-services/*"],
"~socket.io-services/*": ["../../packages/socket.io-services/*"],
"~web/*": ["../web/*"]
}
},
"exclude": ["node_modules", ".turbo"]
}