-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
85 lines (85 loc) · 3.03 KB
/
Copy pathtsconfig.base.json
File metadata and controls
85 lines (85 loc) · 3.03 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"@wiki-graph/prototype-playground": [
"./libs/prototype-playground/src/index.ts"
],
"@wiki/domain-models": ["./libs/wiki/domain-models/src/index.ts"],
"@wiki/domain-naming": ["./libs/wiki/domain-naming/src/index.ts"],
"@wiki/domain-validation": ["./libs/wiki/domain-validation/src/index.ts"],
"@wiki/domain-research-session": [
"./libs/wiki/domain-research-session/src/index.ts"
],
"@wiki/domain-research-errors": [
"./libs/wiki/domain-research-errors/src/index.ts"
],
"@wiki/application-ports": ["./libs/wiki/application-ports/src/index.ts"],
"@wiki/infrastructure-markdown": [
"./libs/wiki/infrastructure-markdown/src/index.ts"
],
"@wiki/infrastructure-filesystem": [
"./libs/wiki/infrastructure-filesystem/src/index.ts"
],
"@wiki/infrastructure-frontmatter": [
"./libs/wiki/infrastructure-frontmatter/src/index.ts"
],
"@wiki/infrastructure-http": [
"./libs/wiki/infrastructure-http/src/index.ts"
],
"@wiki/application-activity-log": [
"./libs/wiki/application-activity-log/src/index.ts"
],
"@wiki/application-cross-reference": [
"./libs/wiki/application-cross-reference/src/index.ts"
],
"@wiki/application-query": ["./libs/wiki/application-query/src/index.ts"],
"@wiki/application-index-manager": [
"./libs/wiki/application-index-manager/src/index.ts"
],
"@wiki/application-tag-validation": [
"./libs/wiki/application-tag-validation/src/index.ts"
],
"@wiki/application-scaffolding": [
"./libs/wiki/application-scaffolding/src/index.ts"
],
"@wiki/application-article-extraction": [
"./libs/wiki/application-article-extraction/src/index.ts"
],
"@wiki/application-research-session": [
"./libs/wiki/application-research-session/src/index.ts"
],
"@wiki/application-wiki-publisher": [
"./libs/wiki/application-wiki-publisher/src/index.ts"
],
"@wiki/application-generators": [
"./libs/wiki/application-generators/src/index.ts"
],
"@wiki/application-maintenance": [
"./libs/wiki/application-maintenance/src/index.ts"
],
"@wiki/application-workflow": [
"./libs/wiki/application-workflow/src/index.ts"
],
"@wiki/application-adr": ["./libs/wiki/application-adr/src/index.ts"],
"@wiki/core": ["./libs/wiki/core/src/index.ts"],
"@wiki-graph/examples": ["./libs/wiki/examples/src/index.ts"]
}
},
"angularCompilerOptions": {
"strictTemplates": true
},
"exclude": ["node_modules", "tmp"]
}