-
Notifications
You must be signed in to change notification settings - Fork 42
/
tsconfig.json
41 lines (41 loc) · 2.17 KB
/
tsconfig.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
{
"extends": "@taiga-ui/tsconfig",
"include": ["apps/**/*", "libs/**/*"],
"exclude": ["**/*.spec.ts", "libs/**/test.ts", "**/schematics/**/*"],
"compilerOptions": {
"baseUrl": "./",
"checkJs": false,
"outDir": "./dist",
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": true,
"lib": ["esnext", "dom"],
"typeRoots": ["node_modules/@types"],
"types": ["node", "webmidi", "dom-view-transitions", "dom-speech-recognition"],
"paths": {
"@demo/constants": ["./apps/demo/src/app/constants/index.ts"],
"@ng-web-apis/common": ["./libs/common/src/index.ts"],
"@ng-web-apis/universal": ["./libs/universal/src/index.ts"],
"@ng-web-apis/universal/*": ["./libs/universal/*"],
"@ng-web-apis/audio": ["./libs/audio/src/index.ts"],
"@ng-web-apis/audio/*": ["./libs/audio/src/*"],
"@ng-web-apis/audio/mocks": ["./libs/audio/mocks.js"],
"@ng-web-apis/canvas": ["./libs/canvas/src/index.ts"],
"@ng-web-apis/geolocation": ["./libs/geolocation/src/index.ts"],
"@ng-web-apis/permissions": ["./libs/permissions/src/index.ts"],
"@ng-web-apis/speech": ["./libs/speech/src/index.ts"],
"@ng-web-apis/mutation-observer": ["./libs/mutation-observer/src/index.ts"],
"@ng-web-apis/payment-request": ["./libs/payment-request/src/index.ts"],
"@ng-web-apis/intersection-observer": ["./libs/intersection-observer/src/index.ts"],
"@ng-web-apis/midi": ["./libs/midi/src/index.ts"],
"@ng-web-apis/storage": ["./libs/storage/src/index.ts"],
"@ng-web-apis/workers": ["./libs/workers/src/index.ts"],
"@ng-web-apis/screen-orientation": ["./libs/screen-orientation/src/index.ts"],
"@ng-web-apis/resize-observer": ["./libs/resize-observer/src/index.ts"],
"@ng-web-apis/view-transition": ["./libs/view-transition/src/index.ts"],
"@ng-web-apis/notification": ["./libs/notification/src/index.ts"],
"rxjs": ["node_modules/rxjs"],
"rxjs/*": ["node_modules/rxjs/*"]
}
}
}