-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.base.json
49 lines (49 loc) · 1.14 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022",
"dom"
],
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@itmat-broker/itmat-apis": [
"packages/itmat-apis/src/index.ts"
],
"@itmat-broker/itmat-commons": [
"packages/itmat-commons/src/index.ts"
],
"@itmat-broker/itmat-cores": [
"packages/itmat-cores/src/index.ts"
],
"@itmat-broker/itmat-models": [
"packages/itmat-models/src/index.ts"
],
"@itmat-broker/itmat-setup": [
"packages/itmat-setup/src/index.ts"
],
"@itmat-broker/itmat-types": [
"packages/itmat-types/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}