-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
99 lines (99 loc) · 2.39 KB
/
tsconfig.base.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"compileOnSave": false,
"compilerOptions": {
"jsx": "react",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es2015",
"module": "esnext",
"moduleResolution": "node",
"rootDir": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["dom", "dom.iterable", "esnext"],
"skipDefaultLibCheck": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"outDir": "../../dist/out-tsc",
"types": [
"node",
"resize-observer-browser"
],
"paths": {
"@tiller-ds/alert": [
"libs/alert/src/index.tsx"
],
"@tiller-ds/core": [
"libs/core/src/index.tsx"
],
"@tiller-ds/data-display": [
"libs/data-display/src/index.tsx"
],
"@tiller-ds/date": [
"libs/date/src/index.tsx"
],
"@tiller-ds/dev": [
"libs/dev/src/index.tsx"
],
"@tiller-ds/form-elements": [
"libs/form-elements/src/index.tsx"
],
"@tiller-ds/form-elements-advanced": [
"libs/form-elements-advanced/src/index.tsx"
],
"@tiller-ds/formik-elements": [
"libs/formik-elements/src/index.tsx"
],
"@tiller-ds/icons": [
"libs/icons/src/index.tsx"
],
"@tiller-ds/intl": [
"libs/intl/src/index.tsx"
],
"@tiller-ds/menu": [
"libs/menu/src/index.tsx"
],
"@tiller-ds/patterns": [
"libs/patterns/src/index.tsx"
],
"@tiller-ds/selectors": [
"libs/selectors/src/index.tsx"
],
"@tiller-ds/storybook": [
"storybook/src/index.tsx"
],
"@tiller-ds/theme": [
"libs/theme/src/index.tsx"
],
"@tiller-ds/upload": [
"libs/upload/src/index.tsx"
],
"@tiller-ds/util": [
"libs/util/src/index.tsx"
]
}
},
"files": [
"./node_modules/@nrwl/react/typings/cssmodule.d.ts",
"./node_modules/@nrwl/react/typings/image.d.ts"
],
"exclude": [
"node_modules",
"tmp",
"dist",
"nx-cache"
]
}