-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.base.json
99 lines (99 loc) · 3.9 KB
/
tsconfig.base.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"checkJs": false,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": false,
"jsx": "react",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@trxn/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@trxn/common": ["libs/common/src/index.ts"],
"@trxn/create-traxion-workspace": [
"libs/hapify/create-traxion-workspace/src/index.ts"
],
"@trxn/hapify-core": ["libs/hapify/core/src/index.ts"],
"@trxn/hapify-devkit": ["libs/hapify/devkit/src/index.ts"],
"@trxn/hapify-generator-casl": [
"libs/hapify/generators/casl/src/index.ts"
],
"@trxn/hapify-generator-nestjs-authorized-graphql-resolvers": [
"libs/hapify/generators/nestjs-authorized-graphql-resolvers/src/index.ts"
],
"@trxn/hapify-generator-nestjs-authorized-services": [
"libs/hapify/generators/nestjs-authorized-services/src/index.ts"
],
"@trxn/hapify-generator-nestjs-graphql-dtos": [
"libs/hapify/generators/nestjs-graphql-dtos/src/index.ts"
],
"@trxn/hapify-generator-nestjs-graphql-resolvers": [
"libs/hapify/generators/nestjs-graphql-resolvers/src/index.ts"
],
"@trxn/hapify-generator-nestjs-modules": [
"libs/hapify/generators/nestjs-modules/src/index.ts"
],
"@trxn/hapify-generator-nestjs-services": [
"libs/hapify/generators/nestjs-services/src/index.ts"
],
"@trxn/hapify-generator-traxion": [
"libs/hapify/generators/traxion/src/index.ts"
],
"@trxn/nestjs-authentication": [
"libs/nestjs/authentication/src/index.ts"
],
"@trxn/nestjs-bcrypt": ["libs/nestjs/bcrypt/src/index.ts"],
"@trxn/nestjs-casl": ["libs/nestjs/casl/src/index.ts"],
"@trxn/nestjs-core": ["libs/nestjs/core/src/index.ts"],
"@trxn/nestjs-database": ["libs/nestjs/database/src/index.ts"],
"@trxn/nestjs-file-storage": ["libs/nestjs/file-storage/src/index.ts"],
"@trxn/nestjs-graphql": ["libs/nestjs/graphql/src/index.ts"],
"@trxn/nestjs-mailer": ["libs/nestjs/mailer/src/index.ts"],
"@trxn/nestjs-mailjet": ["libs/nestjs/mailjet/src/index.ts"],
"@trxn/nestjs-password": ["libs/nestjs/password/src/index.ts"],
"@trxn/nestjs-request-timestamp": [
"libs/nestjs/request-timestamp/src/index.ts"
],
"@trxn/nestjs-reset-password": [
"libs/nestjs/reset-password/src/index.ts"
],
"@trxn/nestjs-user": ["libs/nestjs/user/src/index.ts"],
"@trxn/nestjs-winston": ["libs/nestjs/winston/src/index.ts"],
"@trxn/prisma-casl-generator": [
"libs/hapify/prisma/casl-generator/src/index.ts"
],
"@trxn/prisma-nestjs-authorized-services-generator": [
"libs/hapify/prisma/nestjs-authorized-services-generator/src/index.ts"
],
"@trxn/prisma-nestjs-graphql-dtos-generator": [
"libs/hapify/prisma/nestjs-graphql-dtos-generator/src/index.ts"
],
"@trxn/prisma-nestjs-graphql-resolvers-generator": [
"libs/hapify/prisma/nestjs-graphql-resolvers-generator/src/index.ts"
],
"@trxn/prisma-nestjs-modules-generator": [
"libs/hapify/prisma/nestjs-modules-generator/src/index.ts"
],
"@trxn/prisma-nestjs-services-generator": [
"libs/hapify/prisma/nestjs-services-generator/src/index.ts"
],
"@trxn/prisma-traxion-generator": [
"libs/hapify/prisma/traxion-generator/src/index.ts"
]
},
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2020"
},
"exclude": ["node_modules", "tmp", "**/files/**", "*.spec.ts", "**/mocks/**"]
}