-
-
Notifications
You must be signed in to change notification settings - Fork 772
Expand file tree
/
Copy pathtsconfig-workspace-base.json
More file actions
27 lines (27 loc) · 1.07 KB
/
tsconfig-workspace-base.json
File metadata and controls
27 lines (27 loc) · 1.07 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
{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"paths": {
"@/test": ["./test"],
"@/test/*": ["./test/*"],
"@daypicker/react": ["./packages/react/src/index.ts"],
"@daypicker/react/locale": ["./packages/react/src/locale.ts"],
"@daypicker/react/locale/*": ["./packages/react-day-picker/src/locale/*"],
"@daypicker/react/style.css": [
"./packages/react-day-picker/src/style.css"
],
"@daypicker/react/style.module.css": [
"./packages/react-day-picker/src/style.module.css"
],
"react-day-picker": ["./packages/react-day-picker/src/index.ts"],
"react-day-picker/*": ["./packages/react-day-picker/src/*"],
"@daypicker/buddhist": ["./packages/buddhist/src/index.tsx"],
"@daypicker/ethiopic": ["./packages/ethiopic/src/index.tsx"],
"@daypicker/hebrew": ["./packages/hebrew/src/index.tsx"],
"@daypicker/hijri": ["./packages/hijri/src/index.tsx"],
"@daypicker/persian": ["./packages/persian/src/index.tsx"]
}
}
}