-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
51 lines (51 loc) · 2.24 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2015",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@piplup/cache-buster": ["packages/cache-buster/src/index.ts"],
"@piplup/react-acl": ["packages/react-acl/src/index.ts"],
"@piplup/rhf-adapters": ["packages/rhf-adapters/src/index.ts"],
"@piplup/rhf-adapters/mui-chips-input": [
"packages/rhf-adapters/src/mui-chips-input/index.ts"
],
"@piplup/rhf-adapters/mui-color-input": [
"packages/rhf-adapters/src/mui-color-input/index.ts"
],
"@piplup/rhf-adapters/mui-file-input": ["packages/rhf-adapters/src/mui-file-input/index.ts"],
"@piplup/rhf-adapters/mui-lab": ["packages/rhf-adapters/src/mui-lab/index.ts"],
"@piplup/rhf-adapters/mui-material": ["packages/rhf-adapters/src/mui-material/index.ts"],
"@piplup/rhf-adapters/mui-one-time-password-input": [
"packages/rhf-adapters/src/mui-one-time-password-input/index.ts"
],
"@piplup/rhf-adapters/mui-tel-input": ["packages/rhf-adapters/src/mui-tel-input/index.ts"],
"@piplup/rhf-adapters/mui-x-date-pickers": [
"packages/rhf-adapters/src/mui-x-date-pickers/index.ts"
],
"@piplup/rhf-adapters/react-number-format": [
"packages/rhf-adapters/src/react-number-format/index.ts"
],
"@piplup/rhf-core": ["packages/rhf-core/src/index.ts"],
"@piplup/rhf-core/html": ["packages/rhf-core/src/html/index.ts"],
"@piplup/rhf-core/utils": ["packages/rhf-core/src/utils/index.ts"],
"@piplup/storybook-host": ["apps/storybook-host/src/index.ts"],
"@piplup/use-event-listener": ["packages/use-event-listener/src/index.ts"],
"@piplup/use-local-storage": ["packages/use-local-storage/src/index.ts"],
"@piplup/utils": ["packages/utils/src/index.ts"],
"@piplup/vite-plugin-cache-buster": ["packages/vite-plugin-cache-buster/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}