forked from help-me-mom/ng-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 701 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 701 Bytes
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
{
"extends": "./libs/ng-mocks/tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"ng-mocks": ["./src/index.ts"]
},
"types": [
"jasmine",
"jest",
"karma-coverage-istanbul-reporter",
"karma-jasmine",
"karma-junit-reporter",
"karma-webpack",
"node"
]
},
"files": ["libs/ng-mocks/src/index.ts", "empty.ts", "test.ts", "karma.conf.ts"],
"exclude": ["e2e", "node_modules"],
"include": [
"libs/ng-mocks/src/lib/**/*.ts",
"examples/**/*.ts",
"tests/**/*.ts",
"tests-failures/**/*.ts",
"tests-performance/**/*.ts"
]
}