-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
41 lines (41 loc) · 1.46 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"strict": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"target": "es2020",
"module": "ES2020",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"baseUrl": ".",
"types": ["node"],
"paths": {
"@plimble/jaco-api-client": ["packages/api-client/src/index.ts"],
"@plimble/jaco-awsx": ["packages/awsx/src/index.ts"],
"@plimble/jaco-cli": ["packages/cli/src/index.ts"],
"@plimble/jaco-common": ["packages/common/src/index.ts"],
"@plimble/jaco-core": ["packages/core/src/index.ts"],
"@plimble/jaco-deploy": ["packages/deploy/src/index.ts"],
"@plimble/jaco-domain": ["packages/domain/src/index.ts"],
"@plimble/jaco-dynamodb": ["packages/dynamodb/src/index.ts"],
"@plimble/jaco-http": ["packages/http/src/index.ts"],
"@plimble/jaco-lambda": ["packages/lambda/src/index.ts"],
"@plimble/jaco-sentry": ["packages/sentry/src/index.ts"],
"@plimble/jaco-testing": ["packages/testing/src/index.ts"],
"@plimble/jaco-validator": ["packages/validator/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}