-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.base.json
65 lines (65 loc) · 2.47 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
{
"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",
"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-graphql-resolvers": [
"libs/hapify/generators/graphql-resolvers/src/index.ts"
],
"@trxn/hapify-generators-nestjs-services": [
"libs/hapify/generators/nestjs-services/src/index.ts"
],
"@trxn/hapify-prisma-nestjs-graphql-resolvers-generator": [
"libs/hapify/prisma/nestjs-graphql-resolvers-generator/src/index.ts"
],
"@trxn/hapify-prisma-nestjs-services-generator": [
"libs/hapify/prisma/nestjs-services-generator/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"]
},
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2020"
},
"exclude": ["node_modules", "tmp", "**/files/**"]
}