-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
34 lines (34 loc) · 1.23 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ESNext",
"module": "esnext",
"jsx": "preserve",
"lib": ["ESNext", "ESNext.Array", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ove/mdc-control": ["libs/mdc-control/src/index.ts"],
"@ove/ove-client-display": ["libs/ove-client-display/src/index.ts"],
"@ove/ove-data": ["libs/ove-data/src/index.ts"],
"@ove/ove-logging": ["libs/ove-logging/src/index.ts"],
"@ove/ove-server-utils": ["libs/ove-server-utils/src/index.ts"],
"@ove/ove-types": ["libs/ove-types/src/index.ts"],
"@ove/ove-utils": ["libs/ove-utils/src/index.ts"],
"@ove/pjlink-control": ["libs/pjlink-control/src/index.ts"],
"@ove/ui-base-components": ["libs/ui-base-components/src/index.ts"],
"@ove/ui-components": ["libs/ui-components/src/index.ts"],
"@ove/ui-reorderable-list": ["libs/ui-reorderable-list/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}