This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
54 lines (54 loc) · 2.25 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"noImplicitAny": false,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@novatics-ui/action-footer": ["packages/action-footer/src/index.ts"],
"@novatics-ui/alert": ["packages/alert/src/index.ts"],
"@novatics-ui/button": ["packages/button/src/index.ts"],
"@novatics-ui/checkbox": ["packages/checkbox/src/index.ts"],
"@novatics-ui/checkbox-field": ["packages/checkbox-field/src/index.ts"],
"@novatics-ui/chip": ["packages/chip/src/index.ts"],
"@novatics-ui/core": ["packages/core/src/index.ts"],
"@novatics-ui/currency-text-field": [
"packages/currency-text-field/src/index.ts"
],
"@novatics-ui/dialog": ["packages/dialog/src/index.ts"],
"@novatics-ui/divider": ["packages/divider/src/index.ts"],
"@novatics-ui/file-upload": ["packages/file-upload/src/index.ts"],
"@novatics-ui/form": ["packages/form/src/index.ts"],
"@novatics-ui/form-group": ["packages/form-group/src/index.ts"],
"@novatics-ui/input-field": ["packages/input-field/src/index.ts"],
"@novatics-ui/linear-progress": ["packages/linear-progress/src/index.ts"],
"@novatics-ui/link": ["packages/link/src/index.ts"],
"@novatics-ui/masked-text-field": [
"packages/masked-text-field/src/index.ts"
],
"@novatics-ui/radio": ["packages/radio/src/index.ts"],
"@novatics-ui/radio-group-field": [
"packages/radio-group-field/src/index.ts"
],
"@novatics-ui/select-field": ["packages/select-field/src/index.ts"],
"@novatics-ui/styles": ["packages/styles/src/index.ts"],
"@novatics-ui/tokens": ["packages/tokens/src/index.ts"],
"@novatics-ui/wizard": ["packages/wizard/src/index.ts"],
"@novatics-ui/workspace-plugin": ["tools/workspace-plugin/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "dist", "**/**/*.spec.*"]
}