-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
38 lines (38 loc) · 1.43 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
{
"compileOnSave": false,
"compilerOptions": {
"jsx": "react-jsx",
"rootDir": ".",
"sourceMap": false,
"declaration": false,
"moduleResolution": "Bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"baseUrl": ".",
"strict": true,
"strictNullChecks": true,
"paths": {
"@codesdowork/cms/types": ["packages/cms/types/src/index.ts"],
"@codesdowork/health": ["packages/health/src/index.ts"],
"@codesdowork/logging": ["packages/logging/src/index.ts"],
"@codesdowork/nx-plugins-docker-compose": [
"packages/nx-plugins/docker-compose/src/index.ts"
],
"@codesdowork/nx-plugins-secrets-manager": [
"packages/nx-plugins/secrets-manager/src/index.ts"
],
"@codesdowork/nx-plugins-test": ["packages/nx-plugins/test/src/index.ts"],
"@codesdowork/trivy": ["packages/trivy/src/index.ts"],
"@codesdowork/trpc": ["packages/trpc/src/index.ts"],
"@codesdowork/utils": ["packages/utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "packages/just-site"]
}