-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathtsconfig.spec.json
More file actions
35 lines (35 loc) · 1.49 KB
/
tsconfig.spec.json
File metadata and controls
35 lines (35 loc) · 1.49 KB
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
{
"extends": "./tsconfig.common.json",
"compilerOptions": {
"esModuleInterop": true,
"outDir": "./out-tsc/spec",
"rootDir": "./",
"types": ["jest", "node"],
"module": "ESNext",
"moduleResolution": "node16",
"paths": {
"@app/*": ["./src/app/*"],
"@env/*": ["./src/environments/*"],
"@shared/*": ["src/app/shared/*"],
"@angular/core/testing": ["./node_modules/@angular/core/types/testing.d.ts"],
"@angular/router/testing": ["./node_modules/@angular/router/types/testing.d.ts"],
"@angular/common/http": ["./node_modules/@angular/common/types/http.d.ts"],
"@angular/common/http/testing": ["./node_modules/@angular/common/types/http-testing.d.ts"],
"@angular/platform-browser-dynamic/testing": [
"./node_modules/@angular/platform-browser-dynamic/types/testing.d.ts"
],
"@ngrx/effects/testing": ["./node_modules/@ngrx/effects/types/ngrx-effects-testing.d.ts"],
"@ng-bootstrap/ng-bootstrap/tooltip": [
"./node_modules/@ng-bootstrap/ng-bootstrap/types/ng-bootstrap-ng-bootstrap-tooltip.d.ts"
],
"@ng-bootstrap/ng-bootstrap/modal": [
"./node_modules/@ng-bootstrap/ng-bootstrap/types/ng-bootstrap-ng-bootstrap-modal.d.ts"
],
"@ng-bootstrap/ng-bootstrap/collapse": [
"./node_modules/@ng-bootstrap/ng-bootstrap/types/ng-bootstrap-ng-bootstrap-collapse.d.ts"
]
}
},
"files": ["src/polyfills.ts", "src/setupJest.ts"],
"include": ["src/**/*.spec.ts", "src/app/**/*.d.ts"]
}