-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
30 lines (30 loc) · 1.26 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
{
"extends": ["@tsconfig/node22", "@tsconfig/strictest"],
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"module": "CommonJS",
"moduleResolution": "Node10",
"paths": {
"@clipboard-health/config": ["packages/config/src/index.ts"],
"@clipboard-health/contract-core": ["packages/contract-core/src/index.ts"],
"@clipboard-health/eslint-config": ["packages/eslint-config/src/index.js"],
"@clipboard-health/execution-context": ["packages/execution-context/src/index.ts"],
"@clipboard-health/json-api": ["packages/json-api/src/index.ts"],
"@clipboard-health/json-api-nestjs": ["packages/json-api-nestjs/src/index.ts"],
"@clipboard-health/nx-plugin": ["packages/nx-plugin/src/index.ts"],
"@clipboard-health/rules-engine": ["packages/rules-engine/src/index.ts"],
"@clipboard-health/testing-core": ["packages/testing-core/src/index.ts"],
"@clipboard-health/util-ts": ["packages/util-ts/src/index.ts"],
"embedex": ["packages/embedex/src/index.ts"]
},
"rootDir": ".",
"skipDefaultLibCheck": true,
"sourceMap": true
},
"exclude": ["node_modules", "tmp"]
}