-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathtsconfig.build.json
31 lines (31 loc) · 1.52 KB
/
tsconfig.build.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
{
"extends": "./tsconfig.json",
"exclude": ["libs/**/test.ts", "**/*.spec.ts"],
"compilerOptions": {
"outDir": "./dist/out-tsc/lib",
"paths": {
"@ng-web-apis/common": ["./dist/common"],
"@ng-web-apis/universal": ["./dist/universal"],
"@ng-web-apis/universal/*": ["./dist/universal/*"],
"@ng-web-apis/audio": ["./dist/universal"],
"@ng-web-apis/storage": ["./dist/storage"],
"@ng-web-apis/audio/*": ["./dist/universal/*"],
"@ng-web-apis/canvas": ["./dist/universal"],
"@ng-web-apis/speech": ["./dist/speech"],
"@ng-web-apis/geolocation": ["./dist/geolocation"],
"@ng-web-apis/mutation-observer": ["./dist/mutation-observer"],
"@ng-web-apis/payment-request": ["./dist/payment-request"],
"@ng-web-apis/permissions": ["./dist/permissions"],
"@ng-web-apis/intersection-observer": ["./dist/intersection-observer"],
"@ng-web-apis/midi": ["./dist/midi"],
"@ng-web-apis/screen-orientation": ["./dist/screen-orientation"],
"@ng-web-apis/workers": ["./dist/workers"],
"@ng-web-apis/resize-observer": ["./dist/resize-observer"],
"@ng-web-apis/view-transition": ["./dist/view-transition"],
"@ng-web-apis/notification": ["./dist/notification"],
"@ng-web-apis/platform": ["./dist/platform"],
"rxjs": ["node_modules/rxjs"],
"rxjs/*": ["node_modules/rxjs/*"]
}
}
}