forked from cbulock/cindor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
25 lines (25 loc) · 767 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
25 lines (25 loc) · 767 Bytes
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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"declaration": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"useDefineForClassFields": false,
"resolveJsonModule": true,
"jsx": "react-jsx",
"types": ["vitest/globals", "node"],
"baseUrl": ".",
"paths": {
"cindor-ui-core": ["packages/core/src/index.ts"],
"cindor-ui-core/register": ["packages/core/src/register.ts"],
"cindor-ui-core/components/*": ["packages/core/src/components/*"],
"cindor-ui-react": ["packages/react/src/index.tsx"],
"cindor-ui-vue": ["packages/vue/src/index.ts"]
}
}
}