-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
38 lines (38 loc) · 1.94 KB
/
Copy pathtsconfig.base.json
File metadata and controls
38 lines (38 loc) · 1.94 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2020",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"ddd": ["tools/ddd/src/index.ts"],
"@kstl/shared/domain": ["libs/shared/domain/src/index.ts"],
"@kstl/auth/domain": ["libs/auth/domain/src/index.ts"],
"@kstl/auth/feature-login-page": ["libs/auth/feature-login-page/src/index.ts"],
"@kstl/auth/feature-register-page": ["libs/auth/feature-register-page/src/index.ts"],
"@kstl/shared/util-forms": ["libs/shared/util-forms/src/index.ts"],
"@kstl/shared/util-router": ["libs/shared/util-router/src/index.ts"],
"@kstl/diary/domain": ["libs/diary/domain/src/index.ts"],
"@kstl/diary/feature-diary-upsert-dialog": ["libs/diary/feature-diary-upsert-dialog/src/index.ts"],
"@kstl/entry/domain": ["libs/entry/domain/src/index.ts"],
"@kstl/entry/feature-entry-upsert": ["libs/entry/feature-entry-upsert/src/index.ts"],
"@kstl/shared/util-uniq-string": ["libs/shared/util-uniq-string/src/index.ts"],
"@kstl/entry/ui-attach-image-dialog": ["libs/entry/ui-attach-image-dialog/src/index.ts"],
"@kstl/entry/feature-single-entry-page": ["libs/entry/feature-single-entry-page/src/index.ts"],
"@kstl/entry/feature-entry-list-page": ["libs/entry/feature-entry-list-page/src/index.ts"],
"@kstl/entry/ui-entry-card": ["libs/entry/ui-entry-card/src/index.ts"],
"@kstl/file/domain": ["libs/file/domain/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}