-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
47 lines (47 loc) · 1.37 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./src",
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"jsx": "preserve",
"incremental": true,
"noImplicitAny": false,
"paths": {
"@/test-utils": ["../config/tests/test-utils"],
"@/abi/*": ["./abi/*"],
"@/constants/*": ["./constants/*"],
"@/components/*": ["./components/*"],
"@/context/*": ["./context/*"],
"@/data/*": ["./data/*"],
"@/geodata/*": ["./geodata/*"],
"@/generated/*": ["./generated/*"],
"@/hooks/*": ["./hooks/*"],
"@/mocks/*": ["./mocks/*"],
"@/pages/*": ["./pages/*"],
"@/services/*": ["./services/*"],
"@/shared/*": ["./shared/*"],
"@/types/*": ["./types/*"],
"@/util/*": ["./util/*"],
"@bibliotheca-dao/ui-lib/*": ["../../../packages/ui-lib/src/*"],
"@bibliotheca-dao/ui-lib": ["../../../packages/ui-lib/src/index"],
"@bibliotheca-dao/core-lib/*": ["../../../packages/core-lib/src/*"],
"@bibliotheca-dao/core-lib": ["../../../packages/core-lib/src/index"]
}
},
"exclude": ["**/node_modules", "**/.*/"],
"include": [
"next-env.d.ts",
"custom.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.mts",
"**/*.js",
"**/*.cjs",
"**/*.mjs",
"**/*.jsx",
"**/*.json"
],
"types": ["vitest/globals"]
}