This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
60 lines (60 loc) · 1.94 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
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"lib": ["es2017", "dom"],
"module": "esnext",
"moduleResolution": "node",
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es2015",
"paths": {
"@nx-mesh/examples-sdk-graphql--star-wars": [
"examples/sdk-graphql--star-wars/src/index.ts"
],
"@nx-mesh/examples-sdk-json-schema--fake-api": [
"examples/sdk-json-schema--fake-api/src/index.ts"
],
"@nx-mesh/examples-sdk-mysql--rfam": [
"examples/sdk-mysql--rfam/src/index.ts"
],
"@nx-mesh/examples-sdk-neo4j--movies": [
"examples/sdk-neo4j--movies/src/index.ts"
],
"@nx-mesh/examples-sdk-odata--trippin": [
"examples/sdk-odata--trippin/src/index.ts"
],
"@nx-mesh/examples-sdk-odata--trippin/*": [
"examples/sdk-odata--trippin/src/lib/*"
],
"@nx-mesh/examples-sdk-openapi--javascript-wiki": [
"examples/sdk-openapi--javascript-wiki/src/index.ts"
],
"@nx-mesh/examples-sdk-openapi--javascript-wiki/*": [
"examples/sdk-openapi--javascript-wiki/src/lib/*"
],
"@nx-mesh/examples-sdk-openapi--stackexchange": [
"examples/sdk-openapi--stackexchange/src/index.ts"
],
"@nx-mesh/examples-sdk-openapi--stackexchange/*": [
"examples/sdk-openapi--stackexchange/src/lib/*"
],
"@nx-mesh/examples-sdk-soap--country-info": [
"examples/sdk-soap--country-info/src/index.ts"
],
"@nx-mesh/examples-sdk-soap--country-info/*": [
"examples/sdk-soap--country-info/src/lib/*"
],
"nx-mesh": ["packages/nx-mesh/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}