-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
tsconfig.json
56 lines (56 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./src",
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"strict": true,
"strictNullChecks": true,
"incremental": true,
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"paths": {
"@/test-utils": ["../config/tests/test-utils"],
"@/config/*": ["./config/*"],
"@/lib/*": ["./lib/*"],
"@/components/*": ["./components/*"],
"@/server/*": ["./server/*"],
"@/features/*": ["./features/*"],
"@/layouts/*": ["./layouts/*"],
"@/pages/*": ["./pages/*"],
"@/public/*": ["../public/*"],
"@/themes/*": ["./themes/*"],
"@your-org/common-i18n": ["../../../packages/common-i18n/src/index"],
"@your-org/common-i18n/locales/*": [
"../../../packages/common-i18n/src/locales/*"
],
"@your-org/ui-lib/*": ["../../../packages/ui-lib/src/*"],
"@your-org/ui-lib": ["../../../packages/ui-lib/src/index"],
"@your-org/core-lib/*": ["../../../packages/core-lib/src/*"],
"@your-org/core-lib": ["../../../packages/core-lib/src/index"],
"@your-org/db-main-prisma": [
"../../../packages/db-main-prisma/src/index"
],
"@your-org/ts-utils": ["../../../packages/ts-utils/src/index"]
},
"types": ["vitest/globals", "@testing-library/jest-dom/vitest"]
},
"exclude": ["**/node_modules", "**/.*/*"],
"include": [
".eslintrc.*",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.mts",
"**/*.js",
"**/*.cjs",
"**/*.mjs",
"**/*.jsx",
"**/*.json",
".next/types/**/*.ts"
]
}