We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b2ab0 commit 3019d44Copy full SHA for 3019d44
tsconfig.app.json
@@ -3,7 +3,10 @@
3
"extends": "./tsconfig.json",
4
"compilerOptions": {
5
"outDir": "./out-tsc/app",
6
- "types": []
+ "types": [],
7
+ "paths": {
8
+ "@docs-components/*": ["./src/components/*"]
9
+ }
10
},
11
"files": [
12
"src/main.ts",
tsconfig.json
@@ -21,12 +21,17 @@
21
"lib": [
22
"es2020",
23
"dom"
24
- ]
+ ],
25
26
"angularCompilerOptions": {
27
"enableI18nLegacyMessageIdFormat": false,
28
"strictInjectionParameters": true,
29
"strictInputAccessModifiers": true,
30
"strictTemplates": true
31
- }
+ },
32
+ "files": [],
33
+ "references": [
34
+ { "path": "./tsconfig.app.json" },
35
+ { "path": "./tsconfig.spec.json" },
36
+ ]
37
}
0 commit comments