-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
52 lines (52 loc) · 1.76 KB
/
tsconfig.json
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@tf-test/react-coding-test/feature-input-components": [
"libs/react-coding-test/feature-input-components/src/index.ts"
],
"@tf-test/react/ui": ["libs/react/ui/src/index.ts"],
"@tf-test/react-coding-test/feature-voting-list": [
"libs/react-coding-test/feature-voting-list/src/index.ts"
],
"@tf-test/react-coding-test/feature-register-form": [
"libs/react-coding-test/feature-register-form/src/index.ts"
],
"@tf-test/shared/util-voting-candidates": [
"libs/shared/util-voting-candidates/src/index.ts"
],
"@tf-test/shared/util-validators": [
"libs/shared/util-validators/src/index.ts"
],
"@tf-test/shared/util-formatters": [
"libs/shared/util-formatters/src/index.ts"
],
"@tf-test/shared/models-voting-candidates": [
"libs/shared/models-voting-candidates/src/index.ts"
],
"@tf-test/shared/util-generators": [
"libs/shared/util-generators/src/index.ts"
],
"@tf-test/shared/util-data": ["libs/shared/util-data/src/index.ts"],
"@tf-test/react/util-helpers": ["libs/react/util-helpers/src/index.ts"],
"@tf-test/shared/data-access-signup-api": [
"libs/shared/data-access-signup-api/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}