-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathtsconfig.spec.json
More file actions
32 lines (32 loc) · 831 Bytes
/
Copy pathtsconfig.spec.json
File metadata and controls
32 lines (32 loc) · 831 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
30
31
32
/* To learn more about TypeScript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
"@angular/localize",
"vitest/globals",
"@vitest/browser-playwright"
],
"paths": {
"@docs-components/*": ["./src/components/*"],
"*": ["./*"]
}
},
"files": [
// "src/test.ts",
],
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}