-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 929 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 929 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
26
27
28
29
30
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es6",
"typeRoots": ["./src/types", "./node_modules"],
"types": ["vitest/globals"],
"paths": {
"@/*": ["./src/*"],
"@@/*": [".dumi/tmp/*"],
"@lobehub/editor": ["./src"],
"@lobehub/editor/*": ["./src/*"],
"@lobehub/editor/react": ["./src/react"],
"@lobehub/editor/react/*": ["./src/react/*"],
"@lobehub/editor/renderer": ["./src/renderer"],
"@lobehub/editor/renderer/*": ["./src/renderer/*"]
}
},
"exclude": ["./react.d.ts"],
"include": ["src", "./src/types", "docs", "tests", ".dumirc.ts", ".fatherrc.ts"]
}