-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 2 KB
/
Copy pathtsconfig.json
File metadata and controls
55 lines (55 loc) · 2 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
{
"extends": "./tsconfig.base.json",
"ts-node": {
"require": ["tsconfig-paths/register"],
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node"
}
},
"compilerOptions": {
"paths": {
"@wiki-graph/prototype-playground": [
"./libs/prototype-playground/src/index.ts"
],
"@wiki/domain-models": ["./dist/libs/wiki/domain-models/index.d.ts"],
"@wiki/domain-naming": ["./dist/libs/wiki/domain-naming/index.d.ts"],
"@wiki/domain-validation": ["./dist/libs/wiki/domain-validation/index.d.ts"],
"@wiki/application-ports": ["./dist/libs/wiki/application-ports/index.d.ts"],
"@wiki/infrastructure-markdown": [
"./dist/libs/wiki/infrastructure-markdown/index.d.ts"
],
"@wiki/infrastructure-filesystem": [
"./dist/libs/wiki/infrastructure-filesystem/index.d.ts"
],
"@wiki/infrastructure-frontmatter": [
"./dist/libs/wiki/infrastructure-frontmatter/index.d.ts"
],
"@wiki/application-activity-log": [
"./dist/libs/wiki/application-activity-log/index.d.ts"
],
"@wiki/application-cross-reference": [
"./dist/libs/wiki/application-cross-reference/index.d.ts"
],
"@wiki/application-query": ["./dist/libs/wiki/application-query/index.d.ts"],
"@wiki/application-index-manager": [
"./dist/libs/wiki/application-index-manager/index.d.ts"
],
"@wiki/application-generators": [
"./dist/libs/wiki/application-generators/index.d.ts"
],
"@wiki/application-maintenance": [
"./dist/libs/wiki/application-maintenance/index.d.ts"
],
"@wiki/application-workflow": [
"./dist/libs/wiki/application-workflow/index.d.ts"
],
"@wiki/application-adr": ["./dist/libs/wiki/application-adr/index.d.ts"],
"@wiki/core": ["./dist/libs/wiki/core/index.d.ts"],
"@wiki-graph/examples": ["./libs/wiki/examples/src/index.ts"]
}
},
"angularCompilerOptions": {
"strictTemplates": true
}
}