forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.57 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./src",
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"incremental": true,
"paths": {
"@/test-utils": ["../config/tests/test-utils"],
"@/config/*": ["./config/*"],
"@/lib/*": ["./lib/*"],
"@/components/*": ["./components/*"],
"@/backend/*": ["./backend/*"],
"@/features/*": ["./features/*"],
"@/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/api-gateway": ["../../../packages/api-gateway/src/index"],
"@your-org/db-main-prisma": [
"../../../packages/db-main-prisma/src/index"
],
"@your-org/ts-utils": ["../../../packages/ts-utils/src/index"]
}
},
"exclude": ["**/node_modules", "**/.*/"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.mts",
"**/*.js",
"**/*.cjs",
"**/*.mjs",
"**/*.jsx",
"**/*.json"
]
}