forked from ts-rest/ts-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
45 lines (45 loc) · 1.71 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2019",
"module": "esnext",
"lib": ["es2019", "dom"],
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ts-rest/core": ["libs/ts-rest/core/src/index.ts"],
"@ts-rest/example-contracts": ["libs/example-contracts/src/index.ts"],
"@ts-rest/example-express": ["apps/example-express/src/index.ts"],
"@ts-rest/example-microservice/util-posts-api": [
"libs/example-microservice/util-posts-api/src/index.ts"
],
"@ts-rest/example-microservice/util-users-api": [
"libs/example-microservice/util-users-api/src/index.ts"
],
"@ts-rest/example-nest": ["libs/example-nest/src/index.ts"],
"@ts-rest/express": ["libs/ts-rest/express/src/index.ts"],
"@ts-rest/fastify": ["libs/ts-rest/fastify/src/index.ts"],
"@ts-rest/nest": ["libs/ts-rest/nest/src/index.ts"],
"@ts-rest/next": ["libs/ts-rest/next/src/index.ts"],
"@ts-rest/non-strict-mode-test": [
"libs/non-strict-mode-test/src/index.ts"
],
"@ts-rest/open-api": ["libs/ts-rest/open-api/src/index.ts"],
"@ts-rest/react-query": ["libs/ts-rest/react-query/src/index.ts"],
"@ts-rest/solid-query": ["libs/ts-rest/solid-query/src/index.ts"],
"@ts-rest/ts-rest/utils": ["libs/ts-rest/utils/src/index.ts"],
"@ts-rest/vue-query": ["libs/ts-rest/vue-query/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}