forked from better-auth/better-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (58 loc) · 1.19 KB
/
tsconfig.json
File metadata and controls
58 lines (58 loc) · 1.19 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
{
"extends": "./tsconfig.base.json",
"include": [
// Only include files that are in the root directory. All other files are included by the references.
"./*.ts",
"./*.js"
],
"references": [
{
"path": "./packages/better-auth/tsconfig.json"
},
{
"path": "./packages/cli/tsconfig.json"
},
{
"path": "./packages/core/tsconfig.json"
},
{
"path": "./packages/expo/tsconfig.json"
},
{
"path": "./packages/i18n/tsconfig.json"
},
{
"path": "./packages/passkey/tsconfig.json"
},
{
"path": "./packages/sso/tsconfig.json"
},
{
"path": "./packages/stripe/tsconfig.json"
},
{
"path": "./packages/telemetry/tsconfig.json"
},
{
"path": "./packages/prisma-adapter/tsconfig.json"
},
{
"path": "./packages/mongo-adapter/tsconfig.json"
},
{
"path": "./packages/memory-adapter/tsconfig.json"
},
{
"path": "./packages/drizzle-adapter/tsconfig.json"
},
{
"path": "./packages/kysely-adapter/tsconfig.json"
},
{
"path": "./packages/test-utils/tsconfig.json"
},
{
"path": "./test/tsconfig.json"
}
]
}