-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
70 lines (70 loc) · 3.18 KB
/
tsconfig.base.json
File metadata and controls
70 lines (70 loc) · 3.18 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@storm-software/tsconfig/recommended.json",
"display": "Storm Software - Stryke",
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"ignoreDeprecations": "6.0",
"paths": {
"@stryke/capnp": ["packages/capnp/src/index.ts"],
"@stryke/capnp/*": ["packages/capnp/src/*"],
"@stryke/cli": ["packages/cli/src/index.ts"],
"@stryke/cli/*": ["packages/cli/src/*"],
"@stryke/convert": ["packages/convert/src/index.ts"],
"@stryke/convert/*": ["packages/convert/src/*"],
"@stryke/crypto": ["packages/crypto/src/index.ts"],
"@stryke/crypto/*": ["packages/crypto/src/*"],
"@stryke/env": ["packages/env/src/index.ts"],
"@stryke/env/*": ["packages/env/src/*"],
"@stryke/fs": ["packages/fs/src/index.ts"],
"@stryke/fs/*": ["packages/fs/src/*"],
"@stryke/hash": ["packages/hash/src/index.ts"],
"@stryke/hash/*": ["packages/hash/src/*"],
"@stryke/helpers": ["packages/helpers/src/index.ts"],
"@stryke/helpers/*": ["packages/helpers/src/*"],
"@stryke/hooks": ["packages/hooks/src/index.ts"],
"@stryke/hooks/*": ["packages/hooks/src/*"],
"@stryke/http": ["packages/http/src/index.ts"],
"@stryke/http/*": ["packages/http/src/*"],
"@stryke/json": ["packages/json/src/index.ts"],
"@stryke/json/*": ["packages/json/src/*"],
"@stryke/open-browser": ["packages/open-browser/src/index.ts"],
"@stryke/open-browser/*": ["packages/open-browser/src/*"],
"@stryke/path": ["packages/path/src/index.ts"],
"@stryke/path/*": ["packages/path/src/*"],
"@stryke/prisma-better-auth-generator": [
"packages/prisma-better-auth-generator/src/index.ts"
],
"@stryke/prisma-better-auth-generator/*": [
"packages/prisma-better-auth-generator/src/*"
],
"@stryke/prisma-trpc-generator": [
"packages/prisma-trpc-generator/src/index.ts"
],
"@stryke/prisma-trpc-generator/*": [
"packages/prisma-trpc-generator/src/*"
],
"@stryke/string-format": ["packages/string-format/src/index.ts"],
"@stryke/string-format/*": ["packages/string-format/src/*"],
"@stryke/tools-config": ["tools/config/index.ts"],
"@stryke/tools-config/*": ["tools/config/*"],
"@stryke/tools-nx": ["tools/nx/src/index.ts"],
"@stryke/tools-nx/*": ["tools/nx/src/*"],
"@stryke/tools-scripts": ["tools/scripts/src/index.ts"],
"@stryke/tools-scripts/*": ["tools/scripts/src/*"],
"@stryke/trpc-next": ["packages/trpc-next/src/index.ts"],
"@stryke/trpc-next/*": ["packages/trpc-next/src/*"],
"@stryke/type-checks": ["packages/type-checks/src/index.ts"],
"@stryke/type-checks/*": ["packages/type-checks/src/*"],
"@stryke/types": ["packages/types/src/index.ts"],
"@stryke/types/*": ["packages/types/src/*"],
"@stryke/unique-id": ["packages/unique-id/src/index.ts"],
"@stryke/unique-id/*": ["packages/unique-id/src/*"],
"@stryke/url": ["packages/url/src/index.ts"],
"@stryke/url/*": ["packages/url/src/*"],
"@stryke/zod": ["packages/zod/src/index.ts"],
"@stryke/zod/*": ["packages/zod/src/*"]
}
}
}