-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtsconfig.base.json
30 lines (30 loc) · 904 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "NodeNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"strict": true,
"target": "es2015",
"esModuleInterop": true,
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@mere/cerner": ["libs/cerner/src/index.ts"],
"@mere/epic": ["libs/epic/src/index.ts"],
"@mere/onpatient": ["libs/onpatient/src/index.ts"],
"@mere/search": ["libs/search/src/index.ts"],
"@mere/vector-storage": ["libs/vector-storage/src/index.ts"],
"@mere/veradigm": ["libs/veradigm/src/index.ts"],
"@mere/web": ["apps/web/src/main.tsx"]
}
},
"exclude": ["node_modules", "tmp"]
}