-
Notifications
You must be signed in to change notification settings - Fork 88
/
tsconfig.json
39 lines (39 loc) · 1.2 KB
/
tsconfig.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
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "./",
"paths": {
"@components/*": ["src/components/*"],
"@server/*": ["src/server/*"],
"@less/*": ["src/less/*"],
"@pages/*": ["src/pages/*"],
"@language/*": ["src/language/*"],
"@hooks/*": ["src/hooks/*"],
"@theme": ["src/theme"],
"@layout/*": ["src/layout/*"],
"@stores/*": ["src/stores/*"],
"@utils/*": ["src/utils/*"],
"@config/*": ["src/config/*"],
"@core/*": ["src/pages/editor/core/*"],
"@options/*": ["src/pages/editor/components/options/components/*"],
"@plugins/*": ["src/pages/editor/plugins/*"],
"@images/*": ["src/assets/images/*"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}