-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.spec.json
32 lines (32 loc) · 1.39 KB
/
tsconfig.spec.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
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": ["jest"],
"esModuleInterop": true, // 2. Avoids anoying warnings [check TS option](https://www.typescriptlang.org/tsconfig#esModuleInterop)
"emitDecoratorMetadata": true // 3. Make Angular's dependency injection work with jest
},
"files": ["src/test.ts", "src/polyfills.ts"],
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"],
"paths": {
"@ws-widget/resolver": ["library/ws-widget/resolver"],
"@ws-widget/resolver/*": ["library/ws-widget/resolver/*"],
"@ws-widget/collection": ["library/ws-widget/collection"],
"@ws-widget/collection/*": ["library/ws-widget/collection/*"],
"@ws-widget/utils": ["library/ws-widget/utils"],
"@ws-widget/util": ["library/ws-widget/utils/src/public-api.ts"],
"@ws-widget/utils/*": ["library/ws-widget/utils/*"],
"@ws/app": ["project/ws/app"],
"@ws/app/*": ["project/ws/app/*"],
"@ws/author": ["project/ws/author"],
"@ws/author/*": ["project/ws/author/*"],
"@ws/admin": ["project/ws/admin"],
"@ws/admin/*": ["project/ws/admin/*"],
"@ws/analytics": ["project/ws/analytics"],
"@ws/analytics/*": ["project/ws/analytics/*"],
"@ws/viewer": ["project/ws/viewer"],
"@ws/viewer/*": ["project/ws/viewer/*"],
"@ws/learning-hub": ["project/ws/learning-hub"],
"@ws/learning-hub/*": ["project/ws/learning-hub/*"]
}
}