generated from sudokar/nx-serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
30 lines (30 loc) · 948 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"resolveJsonModule": true,
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": false,
"target": "es2015",
"module": "commonjs",
"lib": ["esnext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@mex/constants": ["libs/constants/src/index.ts"],
"@mex/dynamo-graph": ["libs/dynamo-graph/src/index.ts"],
"@mex/dynamodb-utils": ["libs/dynamodb-utils/src/index.ts"],
"@mex/flow-dao": ["libs/flow-dao/src/index.ts"],
"@mex/queue": ["libs/queue/src/index.ts"],
"@mex/services-external": ["libs/services-external/src/index.ts"],
"@mex/wd-logger": ["libs/wd-logger/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}